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