java-基本数据类型
2020-10-14 本文已影响0人
测试探索
package com.lemon.helloworld; //Day01类放在com.lemon.day01包下
//public 公共 class 类
public class Variable { //创建了Day01的类
//static静态的, void方法没有返回值
public static void main(String[] args) { //程序的入口
//定义八大数据类型
//数据类型 变量名=变量值
boolean b1 = true;
boolean b2 = false;
byte byte1 = 10;
byte byte2 = 100;
long l1 = 1000L; //定义一个long的时候都会加上L后缀,L大小写都行,推荐大写
float f1 = 3.14F; //定义一个float的时候都会加上L后缀,F大小写都行,推荐大写
System.out.println("hello java16...");
System.out.println(l1);
}
}