当前位置:Gxlcms > asp.net > asp.net 中静态方法和动态方法调用的区别实例分析

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

时间:2021-07-01 10:21:17 帮助过:7人阅读

代码如下:
//定义静态方法
class SQLHelper  
    {
        public static string aaa()
        {
            return “你好"      
        }
    }

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

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


人气教程排行