摘要: 1 template 2 inline std::shared_ptr strcat(const char (&p1)[N], const char (&p2)[M]) 3 { 4 std::shared_ptr s1(new char[N]); 5 char s2[M]; 6 std::strcpy(s1.get(), p1); 7 std::st... 阅读全文
posted @ 2017-07-21 13:24 FeckCode 阅读(254) 评论(0) 推荐(0) 编辑