变量的作用范围,构造函数,引用和对象
摘要:1. 成员变量 和 局部变量 public class A { int x=10; A() { x=30; int x=40; x=10; System.out.println(x); System.out.println(this.x); ...
阅读全文
posted @ 2008-01-20 14:59
当你跌到谷底时,那正表示,你只能往上,不能往下!
posted @ 2008-01-20 14:59