Dog *d = [Dog new];
//查看对象地址
NSLog(@"\n d= %p ",d);//打印的为地址 例:0x1001002e0
//查看对象实例变量的值
NSLog(@"\n %d",[d age]);
//打印d的对象
NSLog(@"\n@=",d); //例 <Dog : 0x1001002e0>
调用了对象的 description方法
重写父类的description
-(NSString *)description{
return @"";
}