C#类与变量作用域的测试例程
下面的例子说明一下类的成员的访问修饰符的用法using System;class Vehicle//定义汽车类{public int wheels; //公有成员轮子个数protected float weight; //保护成员重量public void F(){wheels = 4;//正确允许访问自身成员weight = 10; //正确允许访问自身成员}};class train /...