2014年2月15日土曜日

開発環境

Head First C ―頭とからだで覚えるCの基本(David Griffiths (著)、Dawn Griffiths (著) 中田 秀基(監訳)(翻訳)、木下 哲也 (翻訳)、オライリージャパン)の7章(高度な関数)、自分で考えてみよう(p.339)を解いてみる。

その他参考書籍

自分で考えてみよう(p.339)

コード(BBEdit, Emacs)

sample335.c

#include <stdio.h>

enum response_type {DUMP, SECOND_CHANCE, MARRIAGE};
typedef struct {
    char *name;
    enum response_type type;
} response;

void dump(response r)
{
    printf("%sさんへ、\n", r.name);
    puts("dump");
}

void second_chance(response r)
{
    printf("%sさんへ\n", r.name);
    puts("second_chance");
}

void marriage(response r)
{
    printf("%sさんへ\n", r.name);
    puts("marriage");
}

void (*replies[])(response) = {dump, second_chance, marriage};

int main(int argc, char *argv[])
{
    response r[] = {
        {"マイク", DUMP}, {"ルイス", SECOND_CHANCE}, {"マット", SECOND_CHANCE},
        {"ウィリアム", MARRIAGE}
    };
    int i;
    
    for (i = 0; i < 4; ++i) {
        (*replies[r[i].type])(r[i]);
    }
    
    return (0);
}

Makefile

sample339: sample339.c
 cc -g -o sample339 sample339.c

clean:
 rm sample339

入出力結果(Terminal)

$ make && ./sample339
cc -g -o sample339 sample339.c
マイクさんへ、
dump
ルイスさんへ
second_chance
マットさんへ
second_chance
ウィリアムさんへ
marriage
$

0 コメント:

コメントを投稿