私は現在、自分のPC上で目的のCを学習しており、プログラムはコンパイルされません。これは私が得ているエラーです。 "Interface.m:In function" - [Person print] ':Interface.m:17:2:エラー:' NXConstantString 'のためのintergace宣言が見つかりません "目的Cプログラムがコンパイルされない
私はgccコンパイラを使用しています。
は、ここでタイプNSConstantString
のように@"I am %i years old and I weigh about %i pounds"
など
#import <Foundation/NSObject.h>
#import <stdio.h>
@interface Person : NSObject {
int age;
int weight;
}
-(void) print;
-(void) setAge: (int) a;
-(void) setWeight: (int) w;
@end
@implementation Person
-(void) print {
printf(@"I am %i years old and I weigh about %i pounds",age,weight);
}
-(void) setAge: (int) a{
age = a;
}
-(void) setWeight: (int) w{
weight = w;
}
@end
int main(int argc, char * argv[]){
Person *person;
person = [Person alloc];
person = [person init];
[person setAge: 16];
[person setWeight: 120];
[person print];
[person release];
return 0;
}