首页 > 编程语言 > 详细

C++ strcat(template)

时间:2017-07-21 14:01:51      阅读:216      评论:0      收藏:0      [点我收藏+]
 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)

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!