当前位置:  开发笔记 > 编程语言 > 正文

与stdbool.h C++接口

如何解决《与stdbool.hC++接口》经验,为你挑选了1个好方法。

在一个项目中,我在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标准不符



1> JProgrammer..:

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

#ifndef _STDBOOL_H
#define _STDBOOL_H

#include 

/* 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 Class Library项目.

推荐阅读
无名有名我无名_593
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有