数据类型
数据类型
字节
public class Demo02 { public static void main(String[] args) { String a = "hello"; int num = 10; System.out.println(a); System.out.println(num); //八大数据类型 //①整数 int num1 = 10;//最常用 byte num2 = 20; short num3 = 30; long num4 = 30L;//Long类型要在数字后面加L //②小数:浮点数 float num5 = 50.1F;//float 类型要在后面加F double num6 = 3.141592653; //③字符 char name = 'y'; //字符串:String不是关键字,是 类 String NAME = "yy"; //④布尔值:是非 boolean flag = true; //boolean flag = false; } }