摘要:
(Day12)关于++ -- package operator;public class Demo04 { public static void main(String[] args) { // ++(自增) --(自减) 一元运算符 int a = 3; int b = a++; //执行完 阅读全文
摘要:
数据类型扩展 public class demo { public static void main(String[] args) { //整数拓展: 进制 二进制0b 十进制 八进制0 十六进制0x int i = 10; int i2 = 010; //八进制0 int i3 = 0x10; / 阅读全文