码迷,mamicode.com
首页 > 编程语言 > 详细

C++ strcat(template)

时间:2017-07-21 14:14:58      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:sign   span   unsigned   template   color   const   bsp   ret   turn   

 1 template<unsigned N, unsigned M>
 2 inline std::shared_ptr<char> strcat(const char (&p1)[N], const char (&p2)[M])
 3 {
 4     std::shared_ptr<char> s1(new char[N]);
 5     char s2[M];
 6     std::strcpy(s1.get(), p1);
 7     std::strcpy(s2, p2);
 8     std::strcat(s1.get(), s2);
 9     return s1;
10 };

 

C++ strcat(template)

标签:sign   span   unsigned   template   color   const   bsp   ret   turn   

原文地址:http://www.cnblogs.com/xuaidongstdudyrecording/p/7217186.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!