首页 > 其他 > 详细

typedef struct student 和 struct student 的区别

时间:2014-02-15 14:01:20      阅读:462      评论:0      收藏:0      [点我收藏+]
typedef struct student
{
 int num;
 struct student *next;
}student;


struct student
{
 int num;
 struct student *next;
};


第二个struct student是定义了一个student结构体,

第一个是用typedef 把 struct student 这个结构体类型名字重新定义为student,也就是说struct student和student表示同一个事物,都是一个类型的标识符,

比如  typedef int zhengshu; 就是你把整型int重命名为zhengshu,下面定义:int i; 和 zhengshu i; 两句就是等价的了

例程:

#define ListSize 10

typedef int DataType;

typedef struct{

        DataType data【ListSize】;

       int length;

}SeqList;

  SeqList *L;

  L->data =

  L->length =


下面两个例程则是他们应用上的区别:

例1:不使用typedef,

//#include <apue.h>
#include <stdio.h>
#include <stdlib.h>  //exit
#include <malloc.h>
#include <string.h>

struct pfilename{
        char fn[20];
        int fn_len;
        char *pfn;
        int pfn_len;
};

int
main(int argc, char **argv)
{
        struct pfilename *pFhead;
        
        pFhead = malloc(sizeof(struct pfilename));
        strcpy(pFhead->fn,"iloveyou!");
        pFhead->fn_len = strlen(pFhead->fn);
        printf("pFhead->fn = %s,length = %d\n",(pFhead->fn),pFhead->fn_len);
        
        //strcpy(pFhead->pfn,"iloveyou!");
        pFhead->pfn = "iloveyou!!";
        pFhead->pfn_len = strlen(pFhead->pfn);
        printf("pFhead->pfn = %s,length = %d\n",(pFhead->pfn),pFhead->pfn_len);
        
        return 0;
}

例2:使用typedef
#include <stdio.h>
#include <stdlib.h>  //exit
#include <malloc.h>
#include <string.h>

typedef struct pfilename{
        char fn[20];
        int fn_len;
        char *pfn;
        int pfn_len;
}pfilename;



int
main(int argc, char **argv)
{
        pfilename *pFhead;
        
        pFhead = malloc(sizeof(pfilename));
        strcpy(pFhead->fn,"iloveyou!");
        pFhead->fn_len = strlen(pFhead->fn);
        printf("pFhead->fn = %s,length = %d\n",(pFhead->fn),pFhead->fn_len);
        
        //strcpy(pFhead->pfn,"iloveyou!");
        pFhead->pfn = "iloveyou!!";
        pFhead->pfn_len = strlen(pFhead->pfn);
        printf("pFhead->pfn = %s,length = %d\n",(pFhead->pfn),pFhead->pfn_len);
        
        return 0;
}


typedef struct student 和 struct student 的区别

原文:http://blog.csdn.net/u010597161/article/details/19199157

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!