- class Program
- {
- static void Main(string[] args)
- {
- Person.a = 40;
- Person.Pr();
- person1.Ei();
- Console.ReadKey();
- }
- }
- public class Person //这里如果不加public与加了public有何区别?
- {
- public static int a;
- public static void Pr()
- {
- Console.WriteLine("静态成员"+a);
- }
- }
- class person1
- {
- public static void Ei()
- {
- Console.WriteLine("我今年{0}岁",Person.a);
- }
- }
-
复制代码 public是允许访问的最高级别,如果在创建一个类的开头加public是表示可以访问本项目之外的项目吗? |