Typedef vs
Jump to navigation
Jump to search
ในการกำหนดชื่อชนิดตัวแปรใหม่ของเราเองขึ้นมา ในการเลือกใช้ระหว่าง typedef กับ #define ต่างกันยังไง
1.) วิธีการประกาศ
#define MY_TYPE int typedef int My_Type;
2.) typedef obeys scoping rules just like variables, whereas define stays valid until the end of the file (or until a matching undef).
- typedef จะมีช่วง (scope) อยู่เหมือนประกาศตัวแปรเช่่น ถ้าประกาศนอก main() ก็จะเป็น global ตัวแปร MY_TYPE ของเราก็จะมีผลทั้งโปรแกรม แต่ถ้าประกาศใน {...} ก็จะมีผลใช้แค่ใน {...}
- ส่วน define จะมีผลตั้งแต่ตรงที่ #define ไว้ หรือจนกระทั่งจบ #undef
3.) มีบางอย่างที่ typedef ทำได้ แต่ define ทำไม่ได้
typedef int* int_p1; int_p1 a, b, c; // a, b, and c are all int pointers. #define int_p2 int* int_p2 a, b, c; // only the first is a pointer!
และ
typedef int a10[10]; a10 a, b, c; // create three 10-int arrays
และ
typedef int (*func_p) (int); func_p fp // func_p is a pointer to a function that // takes an int and returns an int
อ้างอิง : http://stackoverflow.com/questions/1666353/is-typedef-and-define-the-same-in-c