摘要:
a和a的区别 package com.lol.LiOu.operator; public class Demo04 { public static void main(String[] args) { //++ -- 自增 自减 一元运算符 int a = 3; int b = a++; //a++ 阅读全文
摘要:
public class Demo05 { public static void main(String[] args) { //二元运算符 //Ctrl + D :复制当前行到下一行 int a = 10; int b = 20; int c = 25; int d = 25; System.ou 阅读全文
摘要:
public class Demo03 { public static void main(String[] args) { //整数扩展: 二进制0b 十进制 八进制0 十六进制0x int i = 10; int i2 = 010; //八进制 int i3 = 0x10;//十六进制 Syst 阅读全文