首页 > 编程 > .NET > 正文

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

2024-07-10 12:45:14
字体:
来源:转载
供稿:网友

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

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

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


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表