本帖最后由 刘蕴学 于 2012-6-28 17:12 编辑
public class test
{
static String color="绿色";
public test(String color)
{
this.color+=color;
}
public static void main(String args[])
{
test t1 = new test("黄色");
test t2 = new test("红色");
System.out.println(t1.color);
System.out.println(t2.color);
System.out.println(color);
}
}
结果: a=1, koo.a=2, ary[0]=2
这是为啥?? |
|