C语言中点操作符(.)和箭头操作符(->)的不同之处

自己写一个简单的uname, 要用到utsname结构体, 编译报错如下:

.. code:: c

uname.c: In function ‘main’:
uname.c:8:42: error: invalid type argument of ‘->’ (have ‘struct utsname’)
   printf("%s - %s - %s - %s - %s\n", name->sysname, name->nodename,\
                                          ^

查实一下, 是因为用错了操作符:

  • -> 的左侧必须是指针.
  • . 的左侧必须是结构体实体.

程序如下:

.. code:: c

$ cat -n uname.c
1  #include <sys/utsname.h>
2  #include <stdio.h>
3
4  int main(void)
5  {
6    struct utsname name;
7    printf("%d\n", uname(&name));
8    printf("%s - %s - %s - %s - %s\n", name.sysname, name.nodename,\
9        name.release, name.version, name.machine);
10    return 0;
11  }

2014-09-21: ~~~~~~~~~~~

(摘自《征服c指针》-前桥和弥):

| p->hoge; | 是 | (*p).hoge; | 的语法糖.


更多文章
  • Linux窗口管理器下的截图
  • Go设计模式:facade模式和观察者模式
  • 程序员的MySQL手册(二): 监控与benchmark
  • Go设计模式: 责任链模式
  • 我们真的需要这么复杂的技术栈吗?
  • Go设计模式:装饰器模式
  • 程序员的MySQL手册(一): 安装,基本配置
  • ElasticSearch学习笔记
  • Go设计模式:composite模式
  • 拯救删除ZFS之后的分区表
  • Linux使用redshift自动调整屏幕色温
  • Go设计模式:桥接模式和策略模式
  • Go设计模式:单例模式、原型模式和Builder模式
  • 操作系统也是CRUD
  • Go设计模式:简单工厂模式