摘要: 阅读全文
posted @ 2021-03-15 11:54 马莱狙神 阅读(207) 评论(0) 推荐(0)
摘要: 初探Springboot springboot是如何启动的 主程序 //@SpringBootApplication :标注这个类是一个springboot应用 @SpringBootApplication public class StudyApplication { public static 阅读全文
posted @ 2021-03-05 16:30 马莱狙神 阅读(139) 评论(0) 推荐(0)
摘要: 位运算 << 表示左移, >>表示右移 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 阅读全文
posted @ 2021-03-03 11:20 马莱狙神 阅读(21) 评论(0) 推荐(0)
摘要: 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); 阅读全文
posted @ 2021-03-03 11:14 马莱狙神 阅读(105) 评论(0) 推荐(0)