- 论坛徽章:
- 1
|
把下面的程序编译成动态库
g++ -std=c++11 -fPIC -shared -o libtest.so test.cpp
//test.h
string my_print(const char *s);
template<typename T, typename... Args>
string my_print(const char *s, T value, Args... args);
void print_hw();
//test.cpp
void print_hw()
{
cout<< "hello world"<<endl;
}
string my_print(const char *s)
{
string str;
s++;
while (*s)
{
if (*s == '%')
{
if (*(s + 1) == '%')
{
++s;
}
else
{
//throw std::runtime_error("invalid format string: missing arguments" ;
cout<< "\ninvalid format string: missing arguments\n";
}
}
std::cout << *s;
str += *s;
*s++;
}
return str;
}
template<typename T, typename... Args>
string my_print(const char *s, T value, Args... args)
{
// cout<<s<<endl;
string str;
stringstream out;
while (*s)
{
if (*s == '%')
{
if (*(s + 1) == '%')
{
++s;
}
else
{
out<<value;
str += out.str();
cout<<value;
str += my_print(s + 2, args...);
return str;
}
}
cout<<*s;
str += *s++;
}
cout<<"extra arguments provided to print"<<endl;
//throw std::logic_error("extra arguments provided to print" ;
}
再编译main.cpp
g++ -std=c++11 -L. -ltest -o mian main.cpp
调用下面2个函数
#include"test.h"
//#include"test.cpp"
int main()
{
const char* fmt = "hello %s world %d %f %a abcsd";
int first = 1;
const char* second = "abc";
double third = 3.0;
const char* fourth = "111";
string my_str= my_print(fmt,first,second,third,fourth);
print_hw();
}
出错信息
main.cpp .text+0x14d): undefined reference to `std::string my_print<int, char const*, double, char const*>(char const*, int, char const*, double, char const*)'
如果
main.cpp里面包含#include"test.cpp"不用动态连接库
g++ -std=c++11 -o mian main.cpp
输出
hello 1 world abc 3 111abcsd
hello world
问题 为什么编译成动态库连接就出错找不到实现呢?
gcc version 4.9.0 (GCC)
GNU ld (GNU Binutils) 2.24
|
|