ackage com.xu.base;
public class Demo2 {
public static void main(String[] args) {
//八大基本数据类型
//整数
int num1=10;//最常用
byte num2=20;
short num3=30;
long num4=30L;//Long 类型要在数字后面加个L;便于区分
//小数:浮点数
float num5=10;
float num6=50.1F;//float类型要在数字后面加个F;
double num7=3.141592653589793238462643;
//字符,字符代表一个字;一个字母或者一个中文字;
char name='A';
char name1='a';
//char name2='helloword';//只能有一个字;所以这个下面标红了
//char name3='秦僵';//只能有一个字,所以这个下面标红了
char name4='秦';//没有错误了;
//char name5='ab';//只能有一个字;所以这个下面标红了
//字符串,String不是关键字,是类
//string name6="秦疆";
//string name6="helloworld";
//布尔值:是非;
boolean flag=true;
//boolean flag=false;
boolean m=true;
String a="hello";
int num=10;
//int num="hello";
System.out.println(a);
System.out.println(num);
}
}
//hello
10
Process finished with exit code 0