码迷,mamicode.com
首页 > 其他好文 > 详细

std::string的format实现方式

时间:2019-10-31 16:42:00      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:move   template   ret   aaa   char   nbsp   length   turn   const   

template< typename... Args >
std::string string_sprintf(const char* format, Args... args) {
    int length = std::snprintf(nullptr, 0, format, args...);
    if (length <= 0) {
        return "";
    }

    char* buf = new char[length + 1];
    std::snprintf(buf, length + 1, format, args...);

    std::string str(buf);
    delete[] buf;
    return std::move(str);
}

string s = "拉拉黑%saaaa你好"; string x = string_sprintf(s.c_str(), "123");

输出:
拉拉黑123aaaa你好

完美

 

std::string的format实现方式

标签:move   template   ret   aaa   char   nbsp   length   turn   const   

原文地址:https://www.cnblogs.com/yylingyao/p/11771579.html

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