首页 > 其他 > 详细

类的使用与继承

时间:2014-07-24 10:04:16      阅读:500      评论:0      收藏:0      [点我收藏+]
//长方形的类的声明与实现
#import
<Foundation/Foundation.h> @interface Rect2 : NSObject { // float chang; // float w; } @property float chang; @property float w; - (float)sizeOfRect; @end #import "Rect2.h" @implementation Rect2 //@synthesize chang; //@synthesize w; - (float)sizeOfRect { NSLog(@"%@", self); return (self.chang)*(self.w); } @end //长方体的类的声明与定义 #import <Foundation/Foundation.h> #import "Rect2.h" @interface LiFangTi : Rect2 { // float height; } @property float height; - (float)tiJiFor; @end #import "LiFangTi.h" @implementation LiFangTi -(float)tiJiFor { return self.w*self.height*self.chang; } @end #import "ViewController.h" #import "LiFangTi.h" #import "Rect2.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; Rect2 *rect=[[Rect2 alloc]init]; rect.chang=1; rect.w =2; NSLog(@"%@", rect); NSLog(@"%f",[rect sizeOfRect]); LiFangTi *liFangTi=[[LiFangTi alloc]init]; liFangTi.chang=1.0; liFangTi.w =3.0; liFangTi.height=3.0; NSLog(@"%f",[liFangTi tiJiFor]); }

类的使用与继承,布布扣,bubuko.com

类的使用与继承

原文:http://www.cnblogs.com/lidongq/p/3864656.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!