c++ builder中怎样调用c

2025-04-06 09:05:47
推荐回答(3个)
回答1:

和调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);

回答2:

和调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);

回答3:

不太明白你的问题,是不是extern "C"