数据类型
Java基本数据类型,一切数据由此开始
public class DataTypeExample { public static void main(String[] args) { byte a = 127; short b = 32767; int c = 2147483647; long d = 9223372036854775807L; float e = 3.1415926f; double f = 2.718281828459; char g = 'A'; boolean h = true; System.out.println("byte类型:" + a); System.out.println("short类型:" + b); System.out.println("int类型:" + c); System.out.println("long类型:" + d); System.out.println("float类型:" + e); System.out.println("double类型:" + f); System.out.println("char类型:" + g); System.out.println("boolean类型:" + h); } }
最后更新于