当前位置: 代码迷 >> Android >> 没有名字的struct,该怎么解决
  详细解决方案

没有名字的struct,该怎么解决

热度:84   发布时间:2016-05-01 21:58:37.0
没有名字的struct
C/C++ code
kernel/external/bluetooth/bluez/network/common.cstatic struct {    const char  *name;      /* Friendly name */    const char  *uuid128;   /* UUID 128 */    uint16_t    id;     /* Service class identifier */} __svc[] = {    { "panu",   PANU_UUID,  BNEP_SVC_PANU   },    { "gn",     GN_UUID,    BNEP_SVC_GN },    { "nap",    NAP_UUID,   BNEP_SVC_NAP    },    { NULL }};


请问源码里面有些struct没有名字,这样的struct是干什么的呢?
thanks
 

------解决方案--------------------
直接拿它定义变量,以后就不再直接使用了。
------解决方案--------------------
楼上正解。。
  相关解决方案