内容目录
练习
public class ValueDemo3{
public static void main(String[] args){
byte b = 10;
System.out.println(b);
short s = 20;
System.out.println(s);
int i = 30;
System.out.println(i);
//long
//如果要定义一个long类型的变量
//在数据值后面需要加一个L作为后缀
//L可以是大写的,也可以是小写的
//建议大写
long n = 99999999999L;
System.out.println(n);
//float
//注意点:定义float类型变量的时候
//数据值也需要加一个F作为后缀
float f = 10.1F;
System.out.println(f);
double d = 20.2;
System.out.println(d);
char c = '中';
System.out.println(c);
boolean o = true;
System.out.println(o);
}
}
补充
字符串的类型是
String