gpt4 book ai didi

ios - NSInteger 计数 4 次?

转载 作者:可可西里 更新时间:2023-11-01 04:19:39 24 4
gpt4 key购买 nike

我不明白为什么这个 NSInteger 计数器会递增到数据库行真实值的 4 倍。也许这很愚蠢,但我真的不明白......

到目前为止谢谢:)

NSInteger *i;
i = 0;

for ( NSDictionary *teil in gText ) {

//NSLog(@"%@", [teil valueForKey:@"Inhalt"]);

[databaseWrapper addEntry:[teil valueForKey:@"Inhalt"] withTyp:[teil valueForKey:@"Typ"] withParagraph:[teil valueForKey:@"Paragraph"]];

i+=1;
}

NSLog(@"Number of rows created: %d", i);

最佳答案

因为 i 是一个指针,而您正在递增指针值,该值很可能以 4(NSInteger 指针的大小)为步长递增。只需删除指针 * 引用即可。

NSInteger i = 0;

for ( NSDictionary *teil in gText ) {

理论上你可以用困难的方式做到这一点。

NSInteger *i;
*i = 0;
for ( NSDictionary *teil in gText ) {
...
*i = *i + 1;
...

来自: Foundation Data Types Reference

#if __LP64__ || TARGET_OS_EMBEDDED || TARGET_OS_IPHONE || TARGET_OS_WIN32 || NS_BUILD_32_LIKE_64
typedef long NSInteger;
#else
typedef int NSInteger;
#endif

关于ios - NSInteger 计数 4 次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5398784/

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