免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 964 | 回复: 0
打印 上一主题 下一主题

[C++] 再论关于"c中调用c++编译的动态连接库"问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-10-18 09:55 |只看该作者 |倒序浏览
  1. 主要思路是在c++中强制函数声明为c模式:
  2. bash-2.03$ more testldcpp.cpp
  3. #include <iostream>;
  4. using namespace std;



  5. class a{
  6. public:
  7.         a(int i){cout<<"init a int "<<endl;}
  8.         ~a(){cout<<"destroy a"<<endl;}
  9.         void test();
  10. };
  11. void a::test(){cout<<"fun in a::test"<<endl;}

  12. extern "C"
  13. {
  14.         extern "C++"{void hellocpp_ (void);};
  15.         void hellocpp (void)
  16.         {
  17.                 hellocpp_();//该函数也可以使其他人用C++写的函数
  18.         }
  19. }

  20. void hellocpp_ (void)
  21. {
  22.         cout<<"ld c++ call"<<endl;
  23.         cout<<"before call a"<<endl;
  24.         a vara(100);
  25.         vara.test();
  26.         cout<<"after call a"<<endl;
  27. }


  28. 下面是c call c++
  29. bash-2.03$ more hello.c
  30. #include <stdio.h>;

  31. extern void hellocpp(void);

  32. int main(void)
  33. {
  34.         hellocpp();
  35.         return 0;
  36. }


  37. 下面是c++ call c++
  38. bash-2.03$ more hello.cpp
  39. #include <iostream>;

  40. extern "C"
  41. {
  42.         void hellocpp(void);
  43. };

  44. int main(void)
  45. {
  46.         hellocpp();
  47.         return 0;
  48. }

  49. 下面是makefile
  50. bash-2.03$ more makefile
  51. all:libtestldcpp.so helloc hellocpp

  52. libtestldcpp.so:testldcpp.cpp
  53.         g++ -o libtestldcpp.so -G -fPIC -shared testldcpp.cpp
  54. helloc: hello.c
  55.         gcc -o helloc -L. -ltestldcpp hello.c
  56. hellocpp: hello.cpp
  57.         g++ -o hellocpp -L. -ltestldcpp hello.cpp
  58. clean:
  59.         rm -f ./helloc* ./*.so

  60. 下面是环境
  61. bash-2.03$ uname -a
  62. SunOS machinename  5.8 Generic_108528-13 sun4u sparc SUNW,Sun-Fire-880

  63. bash-2.03$ gcc -v
  64. Reading specs from /usr/local/lib/gcc-lib/sparc-sun-solaris2.8/3.3.2/specs
  65. Configured with: ../configure --with-as=/usr/ccs/bin/as --with-ld=/usr/ccs/bin/l
  66. d --disable-nls --disable-libgcj --enable-languages=c,c++
  67. Thread model: posix
  68. gcc version 3.3.2


  69. 如果那位大虾还有更好的方法,欢迎赐教
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP