标题: bad sequence length in the constant string [打印本页] 作者: 那个Mr_Z 时间: 2014-4-21 11:09 标题: bad sequence length in the constant string 我一用NSLog输出汉字,就会报这个错误,请问我这个是什么原因,有的时候还会报那个 Codepoint out of range of the constant string,这是为什么,我用的Codeblock,请问我该怎么修改设置?
还有:我一个代码的结果为0,请大家帮我看看我哪里出错了,谢谢
#import <Foundation\Foundation.h>
#import <math.h>
@interface Point2D : NSObject
{
int _x;
int _y;
}
- (void)setX:(int)x;
- (void)setY:(int)y;
- (int)x;
- (int)y;
- (void)setX:(int)x andY:(int)y;
- (int)distanceWithOther:(Point2D *)other;
@end