c++ fmt 庫安裝和使用示例

安裝:
1 git clone  https://github.com/fmtlib/fmt.git
2. cmake .
3. make && make install 
#include "fmt/format.h"
#include <iostream>
int main()
{
        std::string s = fmt::format("{0}is{1}", "abra",12);
        std::cout << s <<std::endl;
        return 0;
}
編譯選項要使用 -std=c++11  -lfmt 以及指定連接庫和頭文件位置  

相關文章
相關標籤/搜索