ベースと派生という名前の2つのクラスには、次のようなメソッドが含まれています
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;
}
}
ここでは、オーバーライドされたメソッドが機能するように、派生から呼び出す適切なメソッドが必要です。