C调用C++的方法

看了一下别人的文章,自己又整理了一下,贴上示例代码。
这是A.h
#ifdef __cplusplus
extern "C"
{
#endif
int printf_cpp();
#ifdef __cplusplus
}
#endif

这是A.cpp
#include 
using namespace std;
extern "C"
{
int printf_cpp(void)
{
        cout<<"c++ printf\n"<
}
然后编译生成.o文件
g++ -c a.cpp

在c中调用://main.c
#include "a.h"
int main(int argc, char *argv[])
{
        printf_cpp();
        return 0;
}

编译时:gcc main.c A.o -o a.out -lstdc++
注意加上-lstdc++
这样就可以输出正确的结果了
也可以把它制作成库:ar rcs  liba.a a.o
然后编译:gcc main.c -I. -L. -la -lstdc++
也行

你可能感兴趣的:(C/C++)