电脑故障

位置:IT落伍者 >> 电脑故障 >> 浏览文章

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


发布日期:2022/12/30
 
动态方法在使用时需要先创建实例才能调用实例方法而静态方法则不需要直接使用即可

//定义静态方法

class SQLHelper

{

public static string aaa()

{

return 你好

}

}

调用

SQLHelperaaa() // 类名方法名

//定义动态方法

class SQLHelper

{

public string aaa()

{

return 你好

}

}

调用

SQLHelper s =new SQLHelper ()

saaa()

上一篇:关于正则表达式

下一篇:电子商务--订单