我的重写描述方法得到了"方法声明的缺失上下文".你能说出代码有什么问题吗?
#import <Foundation/Foundation.h>
#import "BNRItem.h"
int main(int argc, const char * argv[])
{
@autoreleasepool {
// Create a mutable array object, store its address in items variable
NSMutableArray *items = [[NSMutableArray alloc]init];
BNRItem *p = [[BNRItem alloc]init];
NSLog(@"%@ %@ %@ %d", [p itemName], [p dateCreated], [p serialNumber], [p valueInDollars]);
// This creates a new NSString, "Red Sofa" and gives it to the BNRItem
[p setItemName:@"Red Sofa"];
// This creates a new NSString, "A1B2C" and gives it to the BNRItem
[p setSerialNumber:@"A1B2C"];
// We send the value 100 to be used as the valueInDollars of this BNRItem
[p setValueInDollars:100];
// Destroy the array pointed to by items
items = nil;
}
return 0;
}
-(NSString *)description // Missing context for method declaration
{
NSString *descriptionString =
[[NSString alloc]initWithFormat:@"%@ (%@): Worth $%d, recorded on %@",
itemName;
serialNumber;
valueInDollars;
dateCreated];
return descriptionString;
}
Run Code Online (Sandbox Code Playgroud)
BNRItem.m
#import "BNRItem.h"
@implementation BNRItem
-(void)setItemName:(NSString *)str {
itemName = str;
}
-(NSString *)itemName {
return itemName;
}
-(void)setSerialNumber:(NSString *)str {
serialNumber = str;
}
-(NSString *)serialNumber {
return serialNumber;
}
-(void)setValueInDollars:(int)i {
valueInDollars = i;
}
-(int)valueInDollars {
return valueInDollars;
}
-(NSDate *)dateCreated {
return dateCreated;
}
-(NSString *)description
{
NSString *descriptionString =
[[NSString alloc]initWithFormat:@"%@ (%@): Worth $%d, recorded on %@",
itemName,
serialNumber; // Expected "]"
valueInDollars, // Expression result unused
dateCreated]; //Extraneous "]" before ";"
return descriptionString;
}
@end
Run Code Online (Sandbox Code Playgroud)
jrt*_*ton 61
你的方法似乎是自由浮动的main.m
.实例方法需要放在类的实现部分中.(@implementation
和之间@end
).
我的猜测是你应该将该代码移动到BNRItem.m中.
归档时间: |
|
查看次数: |
39452 次 |
最近记录: |