跟Java一样的机制,默认情况下可以override,如果要把某个方法设为不可override,则要使用关键字final,要把某个类设为不可继承,也使用该关键字(C#里是sealed)
这个在C++,Java,C#中都不支持.不过貌似意义不是太大。
这个在C#里是不允许的,static不属于方法的签名,这两个方法属于同名方法。调用
void SomeMethod(){ MyClass mc = new MyClass(); mc.MyMethod(); /* The method in the current instance of the class (the object referred to as mc) is invoked. */ mc::MyMethod(); // The static method in the class is invoked }
转载于:https://www.cnblogs.com/Kurodo/archive/2011/07/13/2105493.html