... Word::Word(const char *str) { if(str) word = strdup(str); else word = 0; } Word::Word(const Word &w) { if(w.word) word = strdup(w.word); else word = 0; } ...
確定! 回上一頁