2 个名为 base 和 derived 的类包含如下方法
interface class base:NSObject{
+(int)getmaxrow{
return 30;
}
+display{
print [getmaxrow]; ///here is the :( how to call getmaxrow so
///that it should wrk perfectly on derived aswell as base
}
}
interface class derived: base{
+(int)getmaxrow{
return 45;
}
}
在这里,我们需要一个适当的方法来从派生中调用,以便它可以在被覆盖的方法中工作