码迷,mamicode.com
首页 > 编程语言 > 详细

C语言结构体里的成员数组和指针

时间:2016-10-28 09:45:02      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:内容   struct   strong   log   art   dev   style   eof   char   

struct test{
    int i;
    char *p;
};

 struct test *str;
    int a = 1;
    char *b = "ioiodddddddddddd";

    str = (struct test *)malloc(sizeof(struct test));//结构体指针不为null
    str->i = a;
    str->p = b;
    printf("%s\n",str->p);  //输出ioiodddddddddddd
return 1;

--------------------------------------------------------
struct test{
int i;
char s[10];
};
struct test *str;
str = (struct test *)malloc(sizeof(struct test));//结构体指针不为null
printf("%x\n",str); //输出 72403170
printf("%x\n",str->s); //输出 72403174
return 1;

 参考:http://developer.51cto.com/art/201404/434678_all.htm

我觉得楼主的观点(访问成员指针其实是相对地址里的内容)在结构体指针为null时是成立的,当结构体指针不为null时(如上的例子),访问成员指针得到的其实是成员指针指向的内容。

 

C语言结构体里的成员数组和指针

标签:内容   struct   strong   log   art   dev   style   eof   char   

原文地址:http://www.cnblogs.com/heyijing/p/6006351.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!