C語言中#define與typedef的互換細節詳解

來源:互聯網
上載者:User

複製代碼 代碼如下:#include <stdio.h>
/*<--------- #define string char * ---->*/
typedef char * string;

int main(void)
{
string a[] = {"I", "like", "to", "fight,"},
b[] = {"pinch,", "and", "bight."};
printf("%s %s %s %s %s %s %s\n", a[0], a[1], a[2], a[3], b[0], b[1], b[2]);
return 0;
}

用#define替換掉typedef的行,並且,已經給出的#define樣本不能通過,但是,程式中只要添加一個字元,就可以了.

====================這個問題的解答===========================

有下面兩種定義pStr資料類型的方法,兩者有什麼不同?哪一種更好一點?
typedef char* pStr;
#define pStr char*;

答案與分析:

通常講,typedef要比#define要好,特別是在有指標的場合。請看例子:
typedef char* pStr1;
#define pStr2 char *
pStr1 s1, s2;
pStr2 s3, s4;

在上述的變數定義中,s1、s2、s3都被定義為char *,而s4則定義成了char,不是我們所預期的指標變數,根本原因就在於#define只是簡單的字串替換而typedef則是為一個類型起新名字。
上例中define語句必須寫成 pStr2 s3, *s4; 這這樣才能正常執行。

所以程式

複製代碼 代碼如下:#define string char *;
int main(void)
{
string a[] = {"I", "like", "to", "fight,"},
*b[] = {"pinch,", "and", "bight."}; /*<--就是這裡!!--*/
printf("%s %s %s %s %s %s %s\n", a[0], a[1], a[2], a[3], b[0], b[1], b[2]);

return 0;
}

==========================
確實很巧妙!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.