欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C中兼容C++操作

程序员文章站 2022-07-09 22:58:46
...

C中兼容C++操作

  在C代码中加入C++风格的代码,在编译的时候,报错的是必然的.因为不兼容.例如,在C中加入C++的namespace

namespace cv {
typedef ::int8_t int8_t;
typedef ::uint8_t uint8_t;
typedef ::int16_t int16_t;
typedef ::uint16_t uint16_t;
typedef ::int32_t int32_t;
typedef ::uint32_t uint32_t;
typedef ::int64_t int64_t;
typedef ::uint64_t uint64_t;
}

  编译时,就会提示:unknown type name namespace之类的错误.
  又如,Opencv1中使用Opencv2中的函数cv::Rect:

/* Get window image rectangle coordinates, width and height */
CVAPI(cv::Rect)cvGetWindowImageRect(const char* name);

  在编译的时候,同样会出错.那么解决的方法是什么呢?很简单,就是加入支持C++的宏

#ifdef __cplusplus
~~~~~
#endif

  例如第一个问题的解决方法;

#ifdef __cplusplus
namespace cv {
typedef ::int8_t int8_t;
typedef ::uint8_t uint8_t;
typedef ::int16_t int16_t;
typedef ::uint16_t uint16_t;
typedef ::int32_t int32_t;
typedef ::uint32_t uint32_t;
typedef ::int64_t int64_t;
typedef ::uint64_t uint64_t;
}
#endif

  至此完毕.

相关标签: namespace