方法名
A:
public static void MethodName()
{
}

B:
public  void MethodName()
{
}
的差别有多少?
B在调用的时候要实例化,A不需要,在两者调用的时候有其它影响吗?