Jova notes 9 " = " AssignOperator,Ternary operator 三元,
复合运算符会进行类型转换;
byte b = 3;
b + = 2; // correct, it equals to b = (byte) b + 2;
b = b + 2 // incorrect , int---> byte ( x )
标识符 命名规范和规则
1 包名 :多单词都小写, aaa.nnn.ccc
2 类名、接口名 : 首字母大写
feili4287.hashnode.dev1 min read