typedef使用大全2(结构体)
typedef 使用大全2(结构体)
%A
%A #define S(s) printf("%s\n", #s); s
%A typedef struct _TS1{
%A int x, y;
%A } TS1, *PTS1, ***PPPTS1; // TS1是结构体的名称,PTS1是结构体指针的名称
%A // 也就是将结构体struct _TS1 命名为TS1,
%A // 将struct _TS1 * 命名为 PTS1
%A // 将struct _TS1 *** 命名为 PPPTS1
%A
%A typedef struct { // struct后面的结构体说明也可以去掉
%A int x, y;
%A } TS2, *PTS2;
%A
%A typedef PTS1 *PPTS1; // 定义PPTS1是指向PTS1的指针
%A
%A typedef struct _TTS1{
%A typedef struct ITTS1 {
%A int x, y;
%A } iner;
%A iner i;
%A int x, y;
%A } TTS1;
%A
%A //结构体内部的结构体也一样可以定义
%A typedef TTS1::ITTS1 ITS1;
%A
%A void test_struct()
%A {
%A // 基本结构体重定义的使用
%A TS1 ts1 = {100, 200};
%A PTS1 pts1 = &ts1; // 完全等价于TS1* pts1 = &ts1;
%A PPTS1 ppts1 = &pts1; // 完全等价于TS1** ppts1 = &pts1;
%A PPPTS1 pppts1 = &ppts1; // 完全等价于 TS1*** pppts1 = &ppts1;
%A
%A TS2 ts2 = {99, 88};
%A PTS2 pts2 = &ts2; // 完全等价于 TS2* pts2 = &ts2;
%A
%A TTS1 itts1 = {{110, 220}, 10, 20};
%A Its1* rits1 = &itts1.i;
%A ITS1* &its1 = rits1; // 等价于 TTS1::ITTS1 *its1 = &(itts1.i);
%A
%A printf("ts1\t = (%d, %d)\n*pts1\t = (%d, %d)\n"
%A "**ppts1\t = (%d, %d)\n***pppts1= (%d, %d)\n\n",
%A ts1.x, ts1.y, pts1->x, pts1->y,
%A (**ppts1).x, (**ppts1).y, (***pppts1).x, (***pppts1).y);
%A printf("ts2\t = (%d, %d)\n*pts2\t = (%d, %d)\n\n",
%A ts2.x, ts2.y, pts2->x, pts2->y);
%A print
%A
%A
%A%A
%A
*博客内容为网友个人发布,仅代表博主个人观点,如有侵权请联系工作人员删除。