#import <Foundation/Foundation.h> /** * 1.起名時應聽從標準的OC命名規範,這樣建立出來的接口更容易爲開發者所理解。 * 2.方法名要言簡意賅 * 3.方法名裏不要使用縮略後的類型名稱 * */ //好的命名方式: @interface EOCRectangle : NSObject @property (nonatomic , assign , readonly) float width; @property (nonatomic , assign , readonly) float height; -(id)initWithWidth:(float) width andHeight:(float)height; -(EOCRectangle *)unionRectangle:(EOCRectangle*)rectangle; @end