资讯

先说一下 field 和 variable 之间的区别: class variables and instance variables are fields while local variables and parameter variables are not. All fields are variables. 成员变量(field)是指类的数据成员,而方法内部的局部变量(local ...
String s; 只是创建引用并初始化。String s = "asdf"; 这个代码只是把s初始化。引用到 "asdf" 的内存地址。类似于c的引用指针 ...