免费注册 查看新帖 |

Chinaunix

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

[C++] C++11 动态库连接问题 [复制链接]

论坛徽章:
1
数据库技术版块每日发帖之星
日期:2016-04-10 06:20:00
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-06-25 09:52 |只看该作者 |倒序浏览

把下面的程序编译成动态库
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

论坛徽章:
324
射手座
日期:2013-08-23 12:04:38射手座
日期:2013-08-23 16:18:12未羊
日期:2013-08-30 14:33:15水瓶座
日期:2013-09-02 16:44:31摩羯座
日期:2013-09-25 09:33:52双子座
日期:2013-09-26 12:21:10金牛座
日期:2013-10-14 09:08:49申猴
日期:2013-10-16 13:09:43子鼠
日期:2013-10-17 23:23:19射手座
日期:2013-10-18 13:00:27金牛座
日期:2013-10-18 15:47:57午马
日期:2013-10-18 21:43:38
2 [报告]
发表于 2014-06-25 10:01 |只看该作者
模板不能分离,把string my_print(const char *s, T value, Args... args)的实现放在.h中

论坛徽章:
17
处女座
日期:2013-08-27 09:59:352015亚冠之柏太阳神
日期:2015-07-30 10:16:402015亚冠之萨济拖拉机
日期:2015-07-29 18:58:182015年亚洲杯之巴勒斯坦
日期:2015-03-06 17:38:17摩羯座
日期:2014-12-11 21:31:34戌狗
日期:2014-07-20 20:57:32子鼠
日期:2014-05-15 16:25:21亥猪
日期:2014-02-11 17:32:05丑牛
日期:2014-01-20 15:45:51丑牛
日期:2013-10-22 11:12:56双子座
日期:2013-10-18 16:28:17白羊座
日期:2013-10-18 10:50:45
3 [报告]
发表于 2014-06-25 11:33 |只看该作者
回复 1# thzjy


    这个动态库没关系,你用的是模板函数,C++11中的模板函数没有分离模型,你的模板函数实现得定义在头文件中。

论坛徽章:
12
巳蛇
日期:2013-09-16 15:32:242015年辞旧岁徽章
日期:2015-03-03 16:54:152015年亚洲杯之约旦
日期:2015-02-11 14:38:37双鱼座
日期:2015-01-05 11:05:47戌狗
日期:2014-12-08 09:41:18戌狗
日期:2014-08-15 09:29:29双子座
日期:2014-08-05 09:17:17卯兔
日期:2014-06-08 15:32:18巳蛇
日期:2014-01-27 08:47:08白羊座
日期:2013-11-28 21:04:15巨蟹座
日期:2013-11-13 21:58:012015年亚洲杯之科威特
日期:2015-04-17 16:51:51
4 [报告]
发表于 2014-06-25 11:52 |只看该作者
我怎么记得C++11模板能分离来着。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP