欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net 中静态方法和动态方法调用的区别实例分析

程序员文章站 2024-02-29 20:24:28
复制代码 代码如下://定义静态方法class sqlhelper       {   &n...

复制代码 代码如下:

//定义静态方法
class sqlhelper  
    {
        public static string aaa()
        {
            return “你好"      
        }
    }

调用:
sqlhelper.aaa(); // 类名.方法名

//定义动态方法
class sqlhelper  
    {
        public string aaa()
        {
            return “你好"      
        }
    }
调用:
sqlhelper  s =new sqlhelper ();
s.aaa();