和调C++的结构体一样,根据声明形式的不同,对应两种调用方式:
(注意两者实例化时的不同)
/* 结构体声明 */
typedef struct
{
int a_value;
} a_t;
struct b_t
{
int b_value;
};
/* 结构体调用 */
a_t aa;
printf("%d\n" , aa.a_value);
struct b_t bb;
printf("%d\n", bb.b_value);
和调C++的结构体一样,根据声明形式的不同,对应两种调用方式:
(注意两者实例化时的不同)
/* 结构体声明 */
typedef struct
{
int a_value;
} a_t;
struct b_t
{
int b_value;
};
/* 结构体调用 */
a_t aa;
printf("%d\n" , aa.a_value);
struct b_t bb;
printf("%d\n", bb.b_value);
不太明白你的问题,是不是extern "C"