摘要: public class TestClass { private int a = 1;//私有一律获取不到 public int b { get { return 2; } set { value = 2; } } public int c = 3; } public static void Tes 阅读全文
posted @ 2019-08-13 19:43 quanzhan 阅读(1193) 评论(2) 推荐(0) 编辑