在typedef struct

时间:2017-06-06 19:42:40

标签: c++ struct

如何将bool运算符==添加到结构bd_addr_t?我在C ++项目中使用这个文件。

#ifndef APITYPES_H_
#define APITYPES_H_

#ifdef __GNUC__

#define PACKSTRUCT( decl ) decl __attribute__((__packed__))
#define ALIGNED __attribute__((aligned(0x4)))

#else //msvc

#define PACKSTRUCT( decl ) __pragma( pack(push, 1) ) decl __pragma( pack(pop) )
#define ALIGNED

#endif


typedef unsigned char  uint8;
typedef unsigned short uint16;
typedef signed short   int16;
typedef unsigned long  uint32;
typedef signed char    int8;

typedef struct bd_addr_t
{
    uint8 addr[6];

}bd_addr;

typedef bd_addr hwaddr;
typedef struct
{
    uint8 len;
    uint8 data[];
}uint8array;

typedef struct
{
    uint8 len;
    int8 data[];
}string;

#endif

我尝试添加

bool operator==(const bd_addr_t& a) const
    {
        return (addr[0] == a.addr[0] && addr[1] == a.addr[1] && addr[2] == a.addr[2] && addr[3] == a.addr[3] && addr[4] == a.addr[4] && addr[5] == a.addr[5]);
    }

但这会在编译期间抛出两个错误:

unknown type name 'bool' bool operator==(const bd_addr_t& a) const

 expected ':', ',', ';', '}' or '__attribute__' before '==' token bool operator==(const bd_addr_t& a) const

1 个答案:

答案 0 :(得分:0)

您不能将此类函数添加到C编译器使用的此标头中。其中一种方法是创建一个只在C ++代码中使用的包装器头并添加独立功能(它不能是一个方法,因为它需要它在struct中的声明并使该代码与C不兼容):

#include <original_header.h>
#ifndef __cplusplus
#error This header is only to be included in C++ code
#endif 

bool operator==(const bd_addr_t& a, const bd_addr_t& b);

然后在其中一个.cpp文件中实现它,或者您可以在此标头中实现它并使该函数inline