标签:文件 计算机 prim 整数 str long int system 宽带
认识二进制
数字的基本数据类型
布尔和字符数据类型
代码示例:
public class PrimaryTypes { public static void main(String[] args) { // 整数类型 byte short int long byte byteVar = 99; System.out.println(byteVar); short shortVar = -30000; System.out.println(shortVar); int intVar = 300000; System.out.println(intVar); long longVar = 99; long bigLongVar = 9999999999999999L; System.out.println(bigLongVar); // 浮点类型 float(f/F) double double精度是float的两倍 float floatVar = 100.1111111f; System.out.println(floatVar); double doubleVar = 100.1111111; System.out.println(doubleVar); // 布尔类型 true false boolean condition = true; boolean fcondition = false; System.out.println(condition); // 字符类型 字符用单引号 字符串用双引号 char ch = ‘A‘; System.out.println(ch); } }
标签:文件 计算机 prim 整数 str long int system 宽带
原文地址:https://www.cnblogs.com/buildnewhomeland/p/12099525.html