蓝鸥iOS从零基础到精通就业-OC语言入门 对象内存管理2

来源:互联网 发布:淘宝开店上传宝贝技巧 编辑:程序博客网 时间:2024/06/07 22:04
  • iOS从零基础到精通就业 Objective-C

  • CSDN观看地址:http://edu.csdn.net/course/detail/3347
  • 对象内存管理
  •  Person.h
  • ////  Person.h//  内存管理1////  Created by 蓝鸥 on 16/8/3.//  Copyright © 2016年 luanbin. All rights reserved.//#import <Foundation/Foundation.h>@interface Person : NSObject@end
     Person.m
  • ////  Person.m//  内存管理1////  Created by 蓝鸥 on 16/8/3.//  Copyright © 2016年 luanbin. All rights reserved.//#import "Person.h"@implementation Person//当对象要死亡时会调用这个方法-(void)dealloc{        NSLog(@"狗带");    [super dealloc];}@end





0 0
原创粉丝点击