摘要:
public class Demo03 { public static void main(String[] args) { //整数拓展 ; 进制 二进制0b 八进制0 十进制 十六进制0x int i = 10; int i1 = 010; //八进制0 int i2 = 0x10; //十六进 阅读全文
摘要:
public class Demo02 { public static void main(String[] args) { //八大基本数据类型 //整数 byte num = 10; short num1 = 1111; int num2 = 249174555; //最常用 long num3 阅读全文