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

静态方法和动态方法调用的区别

程序员文章站 2022-05-08 16:17:05
动态方法,在使用时需要先创建实例,才能调用实例方法,而静态方法则不需要,直接使用即可。   //定义静态方法 class sqlhelper     ...

动态方法,在使用时需要先创建实例,才能调用实例方法,而静态方法则不需要,直接使用即可。

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

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

 


摘自 虫虫(⊙o⊙)