摘要:
##变量 public class Demo{ //类变量 static static double salary = 10000; //实例变量,从属于对象,若无初始化,则会赋默认值 //布尔值默认是false //除了基本类型,其余的初始值都为null String name; int age; 阅读全文
摘要:
##优先级 先进行数据类型转换,再进行运算: byte、short、char->ini->long->float->double ##类型转换 //高转到低,强制类型转换 //强制转换,(类型)变量名字 int i = 128; byte b = (byte)i; //低转到高,自动类型转换 int 阅读全文