クラスメソッド「getSimulatedPricesFrom」を持つクラスがあります。実行中に同じクラスからメソッド「projectFromPrice」を呼び出します。ただし、sTPlus1 行で、次の 2 つのエラーが発生します。
1) Class method "projectFromPrice" not found
2) Pointer cannot be cast to type "double"
誰かが理由を知っていますか?.h ファイルで既にメソッドを宣言しています。以下は、AmericanOption.m ファイルのコーディングの一部です。
#import "AmericanOption.h"
@implementation AmericanOption
+(NSMutableArray*)getSimulatedPricesFrom:(double)s0 withRate:(double)r0 withVol:(double)v0 withDays:(int)D withPaths:(int)N
{
double daysPerYr = 365.0;
double sT;
double sTPlus1;
sT = s0;
...
sTPlus1 = (double)[AmericanOption projectFromPrice:sT, r0/daysPerYr, v0/daysPerYr, 1/daysPerYr];
...
return arrPricePaths;
}
+(double)projectFromPrice:(double)s0 withRate:(double)r0 withVol:(double)v0 withDt:(double)dt
{
...
}