摘要:
package lianxi;public class StaticTest { int a = 0; static int b =0; StaticTest(){ a++; b++;// } /** * @param args */ public static void main(Stri... 阅读全文
摘要:
public class TestThis { private String name; void eat(String name){ //String food;//局部变量在使用时必须初始化,否则会报错 error String food = "apple"; //right Syste... 阅读全文
摘要:
public class Test { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub /* * A 父类 * B 子类 * */ ... 阅读全文