アップデート:
辞書でnullオブジェクトをチェックするメソッドを追加しましたが、実際にそれらが見つかりました。
誰かがこのようなものを見たことがありますか?これは、誤ったメモリ管理が原因ではありません。左側の辞書オブジェクトツリーは実際には正しいことに注意してください。
更新を終了
NSMutableDictionary
ARCを有効にしてにいくつかのエントリを追加しています。追加の1つの後、追加されたオブジェクトは突然nullになります。これがコードです(私は怒っていないことを確認するためにそれを拡張しました):
NSMutableDictionary *base = [NSMutableDictionary dictionary];
id o = [GAConstant kTRUE];
id k = [GAClause parse:@"(x 1 1)"];
[base setObject:o forKey:k];
NSLog(@"### Added (%@ -> %@): %@", k, o, base);
o = [GAClause parse:@"(y X)"];
k = [GAClause parse:@"(x 2 X)"];
[base setObject:o forKey:k];
NSLog(@"### Added (%@ -> %@): %@", k, o, base);
o = [GAConstant kTRUE];
k = [GAClause parse:@"(y 3)"];
[base setObject:o forKey:k];
NSLog(@"### Added (%@ -> %@): %@", k, o, base);
o = [GAConstant kTRUE];
k = [GAClause parse:@"(y 6)"];
[base setObject:o forKey:k];
NSLog(@"### Added (%@ -> %@): %@", k, o, base);
出力は次のとおりです。
2013-03-25 16:10:33.546 Jungle[1978:11303] ### Added (<GAListClause: 0x75b0dc0> -> <GAConstant: 0x75b12b0>): {
"<GAListClause: 0x75b1b00>" = "<GAConstant: 0x75b12b0>";
}
2013-03-25 16:10:33.548 Jungle[1978:11303] ### Added (<GAListClause: 0x75b2870> -> <GAListClause: 0x75b1aa0>): {
"<GAListClause: 0x75b2270>" = "<GAListClause: 0x75b1aa0>";
"<GAListClause: 0x75b1b00>" = "<GAConstant: 0x75b12b0>";
}
2013-03-25 16:10:33.549 Jungle[1978:11303] ### Added (<GAListClause: 0x75b2b90> -> <GAConstant: 0x75b12b0>): {
"<GAListClause: 0x75b2d80>" = "<GAConstant: 0x75b12b0>";
"<GAListClause: 0x75b2270>" = "<GAListClause: 0x75b1aa0>";
"<GAListClause: 0x75b1b00>" = "<GAConstant: 0x75b12b0>";
}
2013-03-25 16:10:33.550 Jungle[1978:11303] ### Added (<GAListClause: 0x75b2f00> -> <GAConstant: 0x75b12b0>): {
"<GAListClause: 0x75b2d80>" = "<GAConstant: 0x75b12b0>";
"<GAListClause: 0x75b2270>" = "<GAListClause: 0x75b1aa0>";
"<GAListClause: 0x75b1b00>" = "<GAConstant: 0x75b12b0>";
"<GAListClause: 0x75b1d60>" = (null);
}
このメソッド[GAConstant kTRUE]
は静的変数を初期化して返します。[GAClause parse:]
毎回新しい解析済みオブジェクトを返します。
変数のアドレスが辞書の内容に対応していない理由は明らかです。k
変数をコピーします。nullが値としてどのように侵入できるかはまだ明らかではありません。辞書内のnullの位置は、実行するたびに変化します。2つ取得することもあります。
メモリ管理で何かが起こっているように見えますが、何ですか?ここでARCが有効になります。
[GAConstant kTRUE]
メソッドに関連するコードは次のとおりです。
+ (GAConstant *)kTRUE {
static GAConstant *kTRUE = nil;
static dispatch_once_t onceToken = 0;
dispatch_once(&onceToken, ^{
kTRUE = [[GAConstant alloc] initWithString:@"true"];
});
return kTRUE;
}
nullが辞書全体で変動している場合があります。
2013-03-25 17:09:16.426 Jungle[2294:11303] ### Added (<GAListClause: 0x7182ce0> -> <GAConstant: 0x7183430>): {
"<GAListClause: 0x7183a30>" = "<GAConstant: 0x7183430>";
}
2013-03-25 17:09:16.428 Jungle[2294:11303] ### Added (<GAListClause: 0x75467b0> -> <GAListClause: 0x71839d0>): {
"<GAListClause: 0x7546a30>" = (null);
"<GAListClause: 0x7183a30>" = "<GAConstant: 0x7183430>";
}
2013-03-25 17:09:16.429 Jungle[2294:11303] ### Added (<GAListClause: 0x7546cd0> -> <GAConstant: 0x7183430>): {
"<GAListClause: 0x7546ec0>" = "<GAConstant: 0x7183430>";
"<GAListClause: 0x7546a30>" = "<GAListClause: 0x71839d0>";
"<GAListClause: 0x7183a30>" = "<GAConstant: 0x7183430>";
}
2013-03-25 17:09:16.430 Jungle[2294:11303] ### Added (<GAListClause: 0x7547040> -> <GAConstant: 0x7183430>): {
"<GAListClause: 0x75470f0>" = (null);
"<GAListClause: 0x7546ec0>" = "<GAConstant: 0x7183430>";
"<GAListClause: 0x7546a30>" = "<GAListClause: 0x71839d0>";
"<GAListClause: 0x7183a30>" = "<GAConstant: 0x7183430>";
}
デバッガーでの表示は次のとおりです。