Objective-C和C語言一樣,提供了一些標準宏,描述了當前檔案,所在源碼檔案的行數,以及函數資訊。而Objective-C本身,也提供了相關的類類型。都可以應用在調試和錯誤處理日誌當中。
前置處理器在C/C++/Objective-C語言中提供的宏
* __func__%s 當前函數簽名
* __LINE__%d 在原始碼檔案中當前所在行數
* __FILE__ %s 當前原始碼檔案全路徑
* __PRETTY_FUNCTION__ %s 像__func__,但是包含了C++代碼中的隱形類型資訊。
在Objective-C使用的一些日誌資訊
* NSStringFromSelector(_cmd) %@ 當前selector名稱
* NSStringFromClass([selfclass]) %@ 當前對象名
* [[NSString stringWithUTF8String:**FILE**] lastPathComponent] %@ 原始碼檔案名稱
* [NSThreadcallStackSymbols] %@ 當前stack的可讀字串數組。僅在調度時使用。
**例子代碼:**
• #import <foundation /Foundation.h>
•
• @interface TestObj : NSObject
• - (void) fun:(NSString *)input;
• @end
•
• @implementation TestObj
• - (void) fun:(NSString *)input {
NSLog(@"%s:%d:%s:%s", __func__, __LINE__, __FILE__,__PRETTY_FUNCTION__);
NSLog(@"%@",NSStringFromSelector(_cmd));
NSLog(@"%@",NSStringFromClass([self class]));
NSLog(@"%@",[[NSString stringWithUTF8String:__FILE__] lastPathComponent]);
NSLog(@"%@",[NSThread callStackSymbols]);
NSLog(@"%@",input);}
@end
int main (int argc, const char * argv[]){
@autoreleasepool {
TestObj *to = [[TestObj alloc]init];
[to fun:@"call"];
[to release];
}
return 0;
}