静态方法 是以 static 开头的方法,这类方法不能被实例化,也就是不能被 NEW 出来,只能引用。---例子--- publie class abc { publie static string getStr(){ return "ok";} } --- 如果想调用 abc类中的getStr()方法的话,只能这么写:string str = abc.getStr();--- 而不能写成:...
提示都很明显了,你是不是在一个static class里面的成员SchoolDAL 忘了加static修饰符