- 论坛徽章:
- 0
|
- 主要思路是在c++中强制函数声明为c模式:
- bash-2.03$ more testldcpp.cpp
- #include <iostream>;
- using namespace std;
- class a{
- public:
- a(int i){cout<<"init a int "<<endl;}
- ~a(){cout<<"destroy a"<<endl;}
- void test();
- };
- void a::test(){cout<<"fun in a::test"<<endl;}
- extern "C"
- {
- extern "C++"{void hellocpp_ (void);};
- void hellocpp (void)
- {
- hellocpp_();//该函数也可以使其他人用C++写的函数
- }
- }
- void hellocpp_ (void)
- {
- cout<<"ld c++ call"<<endl;
- cout<<"before call a"<<endl;
- a vara(100);
- vara.test();
- cout<<"after call a"<<endl;
- }
- 下面是c call c++
- bash-2.03$ more hello.c
- #include <stdio.h>;
- extern void hellocpp(void);
- int main(void)
- {
- hellocpp();
- return 0;
- }
- 下面是c++ call c++
- bash-2.03$ more hello.cpp
- #include <iostream>;
- extern "C"
- {
- void hellocpp(void);
- };
- int main(void)
- {
- hellocpp();
- return 0;
- }
- 下面是makefile
- bash-2.03$ more makefile
- all:libtestldcpp.so helloc hellocpp
- libtestldcpp.so:testldcpp.cpp
- g++ -o libtestldcpp.so -G -fPIC -shared testldcpp.cpp
- helloc: hello.c
- gcc -o helloc -L. -ltestldcpp hello.c
- hellocpp: hello.cpp
- g++ -o hellocpp -L. -ltestldcpp hello.cpp
- clean:
- rm -f ./helloc* ./*.so
- 下面是环境
- bash-2.03$ uname -a
- SunOS machinename 5.8 Generic_108528-13 sun4u sparc SUNW,Sun-Fire-880
- bash-2.03$ gcc -v
- Reading specs from /usr/local/lib/gcc-lib/sparc-sun-solaris2.8/3.3.2/specs
- Configured with: ../configure --with-as=/usr/ccs/bin/as --with-ld=/usr/ccs/bin/l
- d --disable-nls --disable-libgcj --enable-languages=c,c++
- Thread model: posix
- gcc version 3.3.2
- 如果那位大虾还有更好的方法,欢迎赐教
复制代码 |
|