jvm 加载路线 校验-- --内存
jvm 优化
类常用变量:首字母小写和驼峰原则
局部变量: 首字母小写和驼峰原则
常量:大写字母和下划线: MAX_VALUE
类名:首字母大写和驼峰原则:Man,GoodMan
方法名:首字母小写和驼峰原则:run(),runRun()
幂运算 2^3 2*2*2=8 很多运算,我们会使用一些工具类来操作!
double pow=Math.pow(3.2);
A=0011 1100
B=0000 1101
-----------------------------------------
A&B=0000 1100
A|B=0011 1101
A^B=0011 0001
~B=1111 0010
2^8=16 2*2*2*2
效率及其高 !!!
<< *2
> >/2
System.out.println(2<<3);
```java
int a=10;
int b=20;
System.out.println(""+a+b); 1020
System.out.println(a+b+""); 30
```
```
// x ? y:z
//如果x==true ,则结果为y,否则结果为z
int score =80;
String type =score<60?"不及格":"及格";//必须掌握
// if
System.out.println(type);
//优先级 ()
//阿里巴巴规范
```