OC基礎(chǔ)學(xué)習(xí)2:面向?qū)ο缶幊痰幕A(chǔ)知識(shí)

間接(indirection)

"只要再多添加一層間接猫胁,計(jì)算機(jī)科學(xué)中就沒(méi)有解決不了的問(wèn)題位他。"

  • 例子
    • 電話薄
    • 讓他人代替你自己去完成工作
    • 編寫一段代碼來(lái)查詢其他代碼便脊,并通過(guò)它繼續(xù)訪問(wèn)另一層代碼驹溃。
    • 推諉
  • 變量與間接
  • 使用文件名的間接

在面向?qū)ο缶幊讨惺褂瞄g接

使用間接來(lái)調(diào)用代碼付呕,不是直接調(diào)用某個(gè)函數(shù),而是間接調(diào)用娃磺。

  • 過(guò)程式編程(Procedual Programming)
#import <Foundation/Foundation.h>

typedef enum {
    kCircle,
    kRectangle,
    kEgg,
} ShapeType;

typedef enum {
    kRedColor,
    kGreenColor,
    kBlueColor
} ShapeColor;

//不同圖形元素
typedef struct {
    int x, y, width, height;
} ShapeRect;

//圖形結(jié)構(gòu)
typedef struct {
    ShapeType type;
    ShapeColor fillColor;
    ShapeRect bounds;
} Shape;

//顏色函數(shù)
NSString *colorName(ShapeColor fillColor)
{
    switch (fillColor) {
        case kRedColor:
            return @"red";
            break;
        case kGreenColor:
            return @"green";
            break;
        case kBlueColor:
            return @"blue";
            break;

    }
    return @"no clue";
}

//繪制圖形
void drawCircle(ShapeRect bounds, ShapeColor fillColor)
{
    NSLog(@"drawing a Circle at (%d %d %d %d) in %@", bounds.x, bounds.y, bounds.width, bounds.height, colorName(fillColor));
}
void drawRectangle(ShapeRect bounds, ShapeColor fillColor)
{
    NSLog(@"drawing a Rectangle at (%d %d %d %d) in %@", bounds.x, bounds.y, bounds.width, bounds.height, colorName(fillColor));
}
void drawEgg(ShapeRect bounds, ShapeColor fillColor)
{
    NSLog(@"drawing a Egg at (%d %d %d %d) in %@", bounds.x, bounds.y, bounds.width, bounds.height, colorName(fillColor));
}
void drawShapes(Shape shapes[], int count)
{
    for (int i=0; i<count; i++) {
        switch (shapes[i].type) {
            case kCircle:
                drawCircle(shapes[i].bounds, shapes[i].fillColor);
                break;
            case kRectangle:
                drawRectangle(shapes[i].bounds, shapes[i].fillColor);
                break;
            case kEgg:
                drawEgg(shapes[i].bounds, shapes[i].fillColor);
                break;
            default:
                break;
        }
    }
}

int main(int argc, const char * argv[]) {
    Shape shapes[3];
    
    ShapeRect rect0 = {0, 0, 10, 30};
    shapes[0].type = kCircle;
    shapes[0].fillColor = kRedColor;
    shapes[0].bounds = rect0;
    
    ShapeRect rect1 = {30, 40, 50, 60};
    shapes[1].type = kRectangle;
    shapes[1].fillColor = kGreenColor;
    shapes[1].bounds = rect1;
    
    ShapeRect rect2 = {15, 18, 37, 29};
    shapes[2].type = kEgg;
    shapes[2].fillColor = kBlueColor;
    shapes[2].bounds = rect2;
    
    drawShapes(shapes, 3);
    
    return 0;
}

修改過(guò)去正常工作的代碼很可能會(huì)引入新的錯(cuò)誤薄湿。
建立在函數(shù)之上,數(shù)據(jù)為函數(shù)服務(wù)偷卧。
代碼例子 3.2.1 Shapes-Procedural

  • 面向?qū)ο缶幊?
    • 以數(shù)據(jù)為中心豺瘤,函數(shù)為數(shù)據(jù)服務(wù)
    • 代碼例子 3.2.2 Shapes-Object
    • id是一種泛型听诸,可以用來(lái)引用任何類型的對(duì)象(id實(shí)際上是一個(gè)指向結(jié)構(gòu)體的指針)坐求。
    • 方括號(hào)在OC中其他意義:用于通知某個(gè)對(duì)象該去做什么。[shape draw];表示通知shape對(duì)象執(zhí)行draw操作
    • 發(fā)送消息(調(diào)用方法):通知對(duì)象執(zhí)行某種操作晌梨。
    • 類是一種能夠?qū)嵗蓪?duì)象的結(jié)構(gòu)體桥嗤。
    • 如果在運(yùn)行時(shí)改變某個(gè)類,則該類的所有對(duì)象自動(dòng)繼承這些變化仔蝌。
#import <Foundation/Foundation.h>

typedef enum {
    kRedColor,
    kGreenColor,
    kBlueColor
} ShapeColor;

//不同圖形元素
typedef struct {
    int x, y, width, height;
} ShapeRect;

//顏色函數(shù)
NSString *colorName(ShapeColor fillColor)
{
    switch (fillColor) {
        case kRedColor:
            return @"red";
            break;
        case kGreenColor:
            return @"green";
            break;
        case kBlueColor:
            return @"blue";
            break;
            
    }
    return @"no clue";
}


@interface Circle : NSObject
{
    @private
    ShapeColor fillColor;
    ShapeRect bounds;
}
- (void) setFillColor: (ShapeColor) fillColor;
- (void) setBounds: (ShapeRect) bounds;
- (void) draw;

@end  //Circle
@implementation Circle
- (void) setFillColor:(ShapeColor) c
{
    fillColor = c;
}

- (void) setBounds:(ShapeRect) b
{
    bounds = b;
}

- (void) draw
{
    NSLog(@"drawing a Circle at (%d %d %d %d) in %@", bounds.x, bounds.y, bounds.width, bounds.height, colorName(fillColor));
}
@end


@interface Rectangle : NSObject
{
@private
    ShapeColor fillColor;
    ShapeRect bounds;
}
- (void) setFillColor: (ShapeColor) fillColor;
- (void) setBounds: (ShapeRect) bounds;
- (void) draw;

@end  //Rectangle
@implementation Rectangle
- (void) setFillColor:(ShapeColor) c
{
    fillColor = c;
}

- (void) setBounds:(ShapeRect) b
{
    bounds = b;
}

- (void) draw
{
    NSLog(@"drawing a Rectangle at (%d %d %d %d) in %@", bounds.x, bounds.y, bounds.width, bounds.height, colorName(fillColor));
}
@end


@interface Egg : NSObject
{
@private
    ShapeColor fillColor;
    ShapeRect bounds;
}
- (void) setFillColor: (ShapeColor) fillColor;
- (void) setBounds: (ShapeRect) bounds;
- (void) draw;

@end  //Egg
@implementation Egg
- (void) setFillColor:(ShapeColor) c
{
    fillColor = c;
}

- (void) setBounds:(ShapeRect) b
{
    bounds = b;
}

- (void) draw
{
    NSLog(@"drawing a Egg at (%d %d %d %d) in %@", bounds.x, bounds.y, bounds.width, bounds.height, colorName(fillColor));
}
@end


// 補(bǔ)充一個(gè)三角形
@interface Triangle : NSObject
{
@private
    ShapeColor fillColor;
    ShapeRect bounds;
}
- (void) setFillColor: (ShapeColor) fillColor;
- (void) setBounds: (ShapeRect) bounds;
- (void) draw;

@end  //Triangle
@implementation Triangle
- (void) setFillColor:(ShapeColor) c
{
    fillColor = c;
}

- (void) setBounds:(ShapeRect) b
{
    bounds = b;
}

- (void) draw
{
    NSLog(@"drawing a Triangle at (%d %d %d %d) in %@", bounds.x, bounds.y, bounds.width, bounds.height, colorName(fillColor));
}
@end

void drawShapes(id shapes[], int count)
{
    for (int i=0; i<count; i++) {
        id shape = shapes[i];
        [shape draw];
    }
}

int main(int argc, const char * argv[]) {
    
    id shapes[4];
    
    ShapeRect rect0 = {0, 0, 10, 30};
    shapes[0] = [Circle new];
    [shapes[0] setBounds:rect0];
    [shapes[0] setFillColor:kRedColor];
    
    ShapeRect rect1 = {30, 40, 50, 60};
    shapes[1] = [Rectangle new];
    [shapes[1] setBounds:rect1];
    [shapes[1] setFillColor:kGreenColor];

    ShapeRect rect2 = {15, 18, 37, 29};
    shapes[2] = [Egg new];
    [shapes[2] setBounds:rect2];
    [shapes[2] setFillColor:kBlueColor];
    
    ShapeRect rect3 = {3, 4, 5, 0};
    shapes[3] = [Triangle new];
    [shapes[3] setBounds:rect3];
    [shapes[3] setFillColor:kBlueColor];
    
    drawShapes(shapes, 4);
    
    return 0;
}

有關(guān)術(shù)語(yǔ)

  • class
  • object
  • instance
  • message
  • method
  • method dispatcher
  • interface
  • implementation

OC中的OOP

@interface Circle : NSObject
{
    @private
    ShapeColor fillColor;
    ShapeRect bounds;
}
- (void) setFillColor: (ShapeColor) fillColor;
- (void) setBounds: (ShapeRect) bounds;
- (void) draw;

@end  //Circle
@implementation Circle
- (void) setFillColor:(ShapeColor) c
{
    fillColor = c;
}

- (void) setBounds:(ShapeRect) b
{
    bounds = b;
}

- (void) draw
{
    NSLog(@"drawing a Circle at (%d %d %d %d) in %@", bounds.x, bounds.y, bounds.width, bounds.height, colorName(fillColor));
}
@end
  1. @interface OC編譯器需要一些有關(guān)類的信息

    • @ 可以看成是對(duì)C語(yǔ)言的擴(kuò)展
    • instance variable(實(shí)例變量) : @interface下的花括號(hào)的內(nèi)容:
    {
      @private
      ShapeColor fillColor;
      ShapeRect bounds;
    }
    
    • method declaration(方法聲明)泛领。有點(diǎn)像C語(yǔ)言中的函數(shù)原型。-表示對(duì)象方法敛惊,+表示類方法渊鞋。(void)表示返回類型。
        - (void) setFillColor: (ShapeColor) fillColor;
        - (void) setBounds: (ShapeRect) bounds;
        - (void) draw;
    
    • infix notation(中綴符) : 方法的名稱及其參數(shù)都是合在一起的
      [circle setFillColor: kRedColor] 表示調(diào)用帶一個(gè)參數(shù)的方法
    • 如果方法使用參數(shù)瞧挤,則需要冒號(hào)锡宋,否則不需要冒號(hào)
    • 提倡@end語(yǔ)言后添加注釋來(lái)注明類的名稱
  2. @implementation

    • @implementation中可以定義在@interface中聲明過(guò)和沒(méi)有聲明過(guò)的方法
    • OC中不存在真正的私有方法
  3. 實(shí)例化對(duì)象

    • instantiation(實(shí)例化)
    • [Circle new] 發(fā)送new消息
  4. 軟件實(shí)體應(yīng)該對(duì)擴(kuò)展開(kāi)放,而對(duì)修改關(guān)閉特恬。 ---- 開(kāi)放/關(guān)閉原則(Bertrand Meyer)

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末执俩,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子癌刽,更是在濱河造成了極大的恐慌役首,老刑警劉巖,帶你破解...
    沈念sama閱讀 210,914評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件妒穴,死亡現(xiàn)場(chǎng)離奇詭異宋税,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)讼油,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評(píng)論 2 383
  • 文/潘曉璐 我一進(jìn)店門杰赛,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人矮台,你說(shuō)我怎么就攤上這事乏屯「保” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,531評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵辰晕,是天一觀的道長(zhǎng)蛤迎。 經(jīng)常有香客問(wèn)我,道長(zhǎng)含友,這世上最難降的妖魔是什么替裆? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,309評(píng)論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮窘问,結(jié)果婚禮上辆童,老公的妹妹穿的比我還像新娘惠赫。我一直安慰自己,他們只是感情好儿咱,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,381評(píng)論 5 384
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著怠缸,像睡著了一般。 火紅的嫁衣襯著肌膚如雪凯旭。 梳的紋絲不亂的頭發(fā)上使套,一...
    開(kāi)封第一講書(shū)人閱讀 49,730評(píng)論 1 289
  • 那天鞠柄,我揣著相機(jī)與錄音,去河邊找鬼厌杜。 笑死,一個(gè)胖子當(dāng)著我的面吹牛夯尽,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播咆槽,決...
    沈念sama閱讀 38,882評(píng)論 3 404
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼圈纺,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼麦射!你這毒婦竟也來(lái)了灯谣?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,643評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤峻呛,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后杀饵,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,095評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡切距,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,448評(píng)論 2 325
  • 正文 我和宋清朗相戀三年谜悟,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片葡幸。...
    茶點(diǎn)故事閱讀 38,566評(píng)論 1 339
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡贺氓,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出辙培,到底是詐尸還是另有隱情,我是刑警寧澤扬蕊,帶...
    沈念sama閱讀 34,253評(píng)論 4 328
  • 正文 年R本政府宣布,位于F島的核電站歇父,受9級(jí)特大地震影響再愈,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜翎冲,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,829評(píng)論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望羔飞。 院中可真熱鬧,春花似錦逻淌、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,715評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)骨望。三九已至,卻和暖如春擎鸠,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背劣光。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,945評(píng)論 1 264
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留牲剃,地道東北人雄可。 一個(gè)月前我還...
    沈念sama閱讀 46,248評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像数苫,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子文判,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,440評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容