03 2021 档案
摘要:初探Springboot springboot是如何启动的 主程序 //@SpringBootApplication :标注这个类是一个springboot应用 @SpringBootApplication public class StudyApplication { public static
阅读全文
摘要:位运算 << 表示左移, >>表示右移 int a =2; /* 用二进制来表示 0000 0001 --1 0000 0010 --2 0000 0100 --4 0000 1000 --8 0001 0000 --16 */ int b = a>>1; //1 System.out.printl
阅读全文
摘要:Java基础 i与1的区别 int a =1; int b = a++; System.out.println(a);//2 int c = ++a; System.out.println(a);//3 System.out.println(b);//1 System.out.println(c);
阅读全文

浙公网安备 33010602011771号