登录 注册
当前位置:主页 > 资源下载 > 31 > 经典C#入门教程中的静态方法

经典C#入门教程中的静态方法

  • 更新:2024-06-22 15:36:32
  • 大小:4.81MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:.Net - 课程资源
  • 格式:PPT

资源介绍

静态方法 类方法是不需要类的任何实例就可以被调用的方法,在方法声明中用static关键字表示。 类方法只能访问静态变量,访问非静态变量的尝试会引起编译错误。 静态方法不能被覆盖成非静态的。 main是静态的,因为它必须在任何实例化发生前被访问,以便应用程序的运行。 public class GeneralFunction { public static int AddUp(int x, int y) { //静态方法 return x + y; } } public class UseGeneral { public void method() { int c = GeneralFunction.AddUp(9, 10); //调用静态方法 System.Console.WriteLine("addUp() gives " + c); } }