gpt4 book ai didi

cocoa - NSLog 的核心基础等效项

转载 作者:行者123 更新时间:2023-12-03 16:04:05 25 4
gpt4 key购买 nike

与 NSLog 功能最接近的 Core Foundation 函数是什么?

最佳答案

CFShow() 类似,但没有前缀。或者,正如 wbyoung 所说,使用 NSLog()。如果您不想使用 Objective-C,则以下内容完全有效(尽管它需要链接到 Foundation.framework):

#if __cplusplus
extern "C" {
#endif
void NSLog(CFStringRef format, ...);
void NSLogv(CFStringRef format, va_list args);
#if __cplusplus
}
#endif

int main (int argc, const char * argv[])
{
NSLog(CFSTR("Hello, World! %u"), 42);
return 0;
}

关于cocoa - NSLog 的核心基础等效项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3060121/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com