静态方法 是以 static 开头的方法,这类方法不能被实例化,也就是不能被 NEW 出来,只能引用。
--------例子-----
publie class abc
{
publie static string getStr()
{
return "ok";
}
}
--------------------
如果想调用 abc类中的getStr()方法的话,只能这么写:
string str = abc.getStr();
-------------------------
而不能写成:
abc obj = new abc();
string str = obj.getStr();
------------------------
静态方法不能够被实例化!