摘要: 例如 Class A { int x = 0; int y = 0; } public void test() { A test1 = new A( ); A test2 = new A( ); test1.x = 1; test1.y = 2; test2.x = 3; test2.y = 4; 阅读全文
posted @ 2016-01-29 23:39 Mr.Owl 阅读(8507) 评论(0) 推荐(0) 编辑