ARC 已启用。为什么'dealloc'方法不调用?我应该在这里使用@autoreleasepool吗?为什么?谢谢你。
@interface Test : NSObject
@end
@implementation Test
+(id)testFromNothing
{
id res = [Test alloc];
return res;
}
-(void)dealloc
{
NSLog(@"deallocated");
}
@end
int main(int argc, const char * argv[])
{
Test* test = [Test testFromNothing];
return 0;
}