- (void)showWeakValue
{
NSString * __weak weakString = [[NSString alloc] initWithFormat:@"First Name: AA"];
NSNumber * __weak weakNum = [[NSNumber alloc] initWithInt:10];
NSLog(@"weakString = %@", weakString);
NSLog(@"weakNum = %@",weakNum);
}
出力は
weakString = (null)
weakNum = 10
なぜweakNumはnullではないのですか? 他にweakNumへの強い参照がないため、割り当て後すぐに割り当てを解除する必要があります。右?