gpt4 book ai didi

objective-c - 在 Objective-C 中打印 C++ 数组 "NSLog"

转载 作者:搜寻专家 更新时间:2023-10-30 20:22:11 25 4
gpt4 key购买 nike

我正在尝试使用 NSLog 输出 C++ 数组 (int inverse[3]),但如果我尝试这种方式:

NSLog([NSString stringWithFormat:@"%d", inverse]);

它只是行不通,但是如果我这样尝试:

NSLog([NSString stringWithFormat:@"%d", inverse[0]]);

我得到了正确的输出。我的目标是输出整个数组。

有什么想法吗?谢谢

最佳答案

使用 for 循环打印所有值。

for (int i=0; i<3; i++) {
NSLog(@"%i", inverse[i]);
}

或:

NSLog(@"%i, %i, %i", inverse[0], inverse[1], inverse[2]);

关于objective-c - 在 Objective-C 中打印 C++ 数组 "NSLog",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7656394/

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