14

在一个项目中,我在 C++ 和使用 stdbool.h 的 C 库之间进行接口定义。

#ifndef _STDBOOL_H
#define _STDBOOL_H

/* C99 Boolean types for compilers without C99 support */
/* http://www.opengroup.org/onlinepubs/009695399/basedefs/stdbool.h.html */
#if !defined(__cplusplus)

#if !defined(__GNUC__)
/* _Bool builtin type is included in GCC */
typedef enum { _Bool_must_promote_to_int = -1, false = 0, true = 1 } _Bool;
#endif

#define bool _Bool
#define true 1
#define false 0
#define __bool_true_false_are_defined 1

#endif

#endif

一些结构有bool成员。因此,如果我将这些结构之一定义为 C++ 函数中的局部变量并将其传递给 C 函数,则 C++ 和 C 之间的大小不一致,因为 bool 在 C++ 中是一个再见,在 C 中是 4。

有没有人对如何在不诉诸我目前的解决方案的情况下克服这个问题有任何建议

//#define bool _Bool
#define bool unsigned char

这违反了stdbool.h的 C99 标准

4

3 回答 3

11

stdbool.h通过找到符合 C99 标准的更兼容的实现,我找到了自己问题的答案。

#ifndef _STDBOOL_H
#define _STDBOOL_H

#include <stdint.h>

/* C99 Boolean types for compilers without C99 support */
/* http://www.opengroup.org/onlinepubs/009695399/basedefs/stdbool.h.html */
#if !defined(__cplusplus)

#if !defined(__GNUC__)
/* _Bool builtin type is included in GCC */
/* ISO C Standard: 5.2.5 An object declared as 
type _Bool is large enough to store 
the values 0 and 1. */
/* We choose 8 bit to match C++ */
/* It must also promote to integer */
typedef int8_t _Bool;
#endif

/* ISO C Standard: 7.16 Boolean type */
#define bool _Bool
#define true 1
#define false 0
#define __bool_true_false_are_defined 1

#endif

#endif

这取自Ada 类库项目。

于 2008-08-27T01:14:06.767 回答
2

大小不是唯一会在这里不一致的东西。在 C++ 中,bool 是一个关键字,C++ 保证 bool 可以保存值 1 或 0,仅此而已。C不给你这个保证。

也就是说,如果 C 和 C++ 之间的互操作性很重要,您可以通过为 C++ 定义一个相同的布尔值并使用它而不是内置的布尔值来模拟 C 的自定义布尔值。这将是一个有问题的布尔值和 C 布尔值和 C++ 布尔值之间的相同行为之间的权衡。

于 2008-08-25T00:10:41.380 回答
0

从逻辑上讲,您不能在 C 和 C++ 之间共享具有冲突声明的 bool 源代码,并使它们相互链接。

共享代码和链接的唯一方法是通过中间数据结构。不幸的是,据我了解,您无法修改定义 C++ 程序和 C 库之间接口的代码。如果可以的话,我建议使用类似的东西:

union boolean {
   bool value_cpp;
   int  value_c;
}; 

// 根据字节顺序,可能需要填充

其效果是使两种语言中的数据类型具有相同的宽度;需要在两端执行转换为本机数据类型。在库函数定义中将 bool 的使用替换为 boolean,在库中使用 fiddle 代码进行转换,就大功告成了。

因此,您将不得不做的是在 C++ 程序和 C 库之间创建一个shim 。

你有:

extern "C" bool library_func_1(int i, char c, bool b);

你需要创建:

bool library_func_1_cpp(int i, char c, bool b)
{
   int result = library_func_1(i, c, static_cast<int>(b));
   return (result==true);
}

现在改为调用 library_func_1_cpp 。

于 2008-08-25T04:29:45.283 回答