位置:首页 > 软件操作教程 > 编程开发 > C# > 问题详情

C#静态方法

提问人:刘冬梅发布时间:2020-10-13

1.类方法是不需要类的任何实例就可以被调用的方法,在方法声明中用static关键字表示。

2.类方法只能访问静态变量,访问非静态变量的尝试会引起编译错误。

3.静态方法不能被覆盖成非静态的。

4.main是静态的,因为它必须在任何实例化发生前被访问,以便应用程序的运行。

5.public class GeneralFunction {

         public static int AddUp(int x, int y) 

        { //静态方法

            return x + y;

        }

     }

6.public class UseGeneral {

     public void method() {

     int c = GeneralFunction.AddUp(9, 10); //调用静态方法

     System.Console.WriteLine("addUp() gives " + c);

     }

     }

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部