91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

boost字符串處理函數format怎么使用

發布時間:2022-06-20 09:30:56 來源:億速云 閱讀:150 作者:iii 欄目:開發技術

這篇文章主要介紹“boost字符串處理函數format怎么使用”,在日常操作中,相信很多人在boost字符串處理函數format怎么使用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”boost字符串處理函數format怎么使用”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

用boost::format來格式化字符串

在字符串處理中少不了格式化字符串,C++中傳統的格式化函數是C語言的sprintf,但它一個很大的問題就是不安全。因此,在stl中引入了stringstream來實現安全格式化,但是stringstream卻遠不如sprintf來得直觀。例如,對如如下代碼:

    char text[]="hello";    
    bool is_all_lower = boost::algorithm::all(text, is_lower());

    char output[128];
    sprintf(output, "<%s> %s in the lower case", text, (is_all_lower? "is": "is not"));

如果把最后兩句format的函數用stringstream來寫的話,可讀性是遠不如sprintf的。

    stringstream output;
    output << "<" << text << "> "
        << (is_all_lower)? "is": "is not") 
        << " in the lower case";

boost引入了一個提供類似.net中的string.format的方式提供格式化字符串的函數,用它來格式化的話就是如下形式:

    boost::format fmt = boost::format("<%s> %s in the lower case") % text % (is_all_lower? "is": "is not");
    string output = fmt.str();

前面的例子中演示的是C風格的格式化字符串,boost.format也提供了類似.net風格的格式化字符串方式:

    boost::format fmt = boost::format("<%1%> %2% in the lower case") % text % (is_all_lower? "is": "is not");
    cout << fmt << endl;

這種方式更容易看到參數在格式化字符串中的位置,推薦這種形式。不過它的起始坐標是1而不是0,用慣了.net的string.format的朋友需要注意下。

格式化控制

格式化語法為: [ N$ ] [ flags ] [ width ] [ . precision ] type-char。也提供了C語言和.net兩種風格。

    //傳統c語言風格
    cout << boost::format("\n\n%s" 
            "%1t 十進制 = [%d]\n" 
            "%1t 格式化的十進制 = [%5d]\n" 
            "%1t 格式化十進制,前補'0' = [%05d]\n" 
            "%1t 十六進制 = [%x]\n" 
            "%1t 八進制 = [%o]\n" 
            "%1t 浮點 = [%f]\n" 
            "%1t 格式化的浮點 = [%3.3f]\n" 
            "%1t 科學計數 = [%e]\n" 
            ) % "example :\n" % 15 % 15 % 15 % 15 % 15 % 15.01 % 15.01 % 15.01 << endl; 

    //.net的風格
    cout << boost::format("%1%" 
            "%1t 十進制 = [%2$d]\n" 
            "%1t 格式化的十進制 = [%2$5d]\n" 
            "%1t 格式化十進制,前補'0' = [%2$05d]\n" 
            "%1t 十六進制 = [%2$x]\n" 
            "%1t 八進制 = [%2$o]\n" 
            "%1t 浮點 = [%3$f]\n" 
            "%1t 格式化的浮點 = [%3$3.3f]\n" 
            "%1t 科學計數 = [%3$e]\n" 
            ) % "example :\n" % 15 % 15.01 << endl;

異常處理

既然boost.format函數是用來代替sprintf的,那么自然就得有異常處理的功能,而不是像sprintf那樣死給你看。boost.format的處理方法是拋異常,它在如下兩種情況家會拋異常:

  • format字符串非法

  • format綁定非法

如下代碼演示了這兩種情形:

    try
    {
        boost::format("<%3");
    }
    catch(std::exception& err)
    {
        cout << err.what() << endl;
    }

    boost::format fmt = boost::format("<%3%> %2% in the lower case") % text % (is_all_lower? "is": "is not");
    try
    {
        cout << fmt << endl;
    }
    catch(std::exception& err)
    {
        cout << err.what() << endl;
    }

封裝

boost.format是以一個對象,而不是函數來實現的,導致其使用和異常處理起來要麻煩不少,不過,利用c++11的可變參數模板的語法還是可以很容易把它封裝成一個可變參數的函數的形式:

string string_fromat(const char* format, …)

需要定義三個重載版本:

    template<class TFirst>
    void string_format(boost::format& fmt, TFirst&& first)
    {
        fmt % first;
    }

    template<class TFirst, class... TOther>
    void string_format(boost::format& fmt, TFirst&& first, TOther&&... other)
    {
        fmt % first;
        string_format(fmt, other...);
    }

    template<class TFirst, class... TOther>
    string string_format(const char* format, TFirst&& first, TOther&&... other)
    {
        boost::format fmt(format);
        string_format(fmt, first, other...);
        return fmt.str();
    }

現在就可以這么用了:

auto output = string_format("<%1%> %2% in the lower case", text, (is_all_lower? "is": "is not"));

所有的異常也都會在該函數中拋出,雖然效率上相對低點,但用起來要舒服點。

到此,關于“boost字符串處理函數format怎么使用”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

吉隆县| 湘潭市| 永川市| 新源县| 阿拉善右旗| 荆门市| 通河县| 绍兴市| 社会| 宾川县| 漾濞| 洛隆县| 固阳县| 四平市| 吴堡县| 乐业县| 崇礼县| 翁源县| 海兴县| 东莞市| 丰镇市| 怀宁县| 合肥市| 万年县| 横峰县| 绥芬河市| 简阳市| 吴忠市| 麦盖提县| 琼中| 阜阳市| 房山区| 朝阳区| 高平市| 安宁市| 疏附县| 广饶县| 肥乡县| 西充县| 马关县| 东乌珠穆沁旗|