项目Github地址:https://github.com/fmtlib/fmt
fmt
是一个现代化的 C++ 格式化库,旨在提供高性能、安全、易用的文本格式化功能。它支持类似于 Python 的字符串格式化语法,并且能够直接与标准输出流和字符串进行交互。
主要特点和功能:
1.现代化的格式化语法:fmt 提供了类似 Python 的格式化字符串语法,例如 {} 作为占位符,可以方便地进行字符串插值和格式化。
2.高性能:fmt 专注于提供高性能的格式化功能。它采用了一些优化技术,例如使用了 SSO(Small String Optimization)以及缓冲区复用,以减少内存分配和复制。
3.安全:fmt 旨在提供类型安全的格式化功能,防止常见的格式化字符串漏洞(如格式化字符串攻击)。
4.标准库兼容:fmt 可以与标准库的输入输出流(如 std::ostream)无缝集成,使得格式化输出更加灵活和高效。
5.格式化控制:提供了丰富的格式化控制选项,例如精度、对齐、填充字符等,以满足各种输出格式的需求。
6.跨平台:fmt 支持多种操作系统和编译器,包括 Windows、Linux、macOS 等,并且支持多种 C++ 标准(C++11 及以上)。
Ubuntu可以apt安装fmt:
sudo apt install libfmt-dev
程序g++编译:
g++ -o main main.cpp -lfmt
简单字符串输出示例:
#include <fmt/core.h>
#include <iostream>
int main() {
std::string name = "Bob";
int age = 30;
fmt::print("Hello, {}! You are {} years old.\n", name, age);
return 0;
}
复杂字符串输出示例(对齐、数字格式化):
#include <fmt/core.h>
#include <fmt/format.h>
#include <iostream>
#include <vector>
struct Person {
std::string name;
int age;
};
int main() {
std::vector<Person> people = {
{"Alice", 30},
{"Bob", 25},
{"Charlie", 35}
};
// 使用 fmt::format 进行字符串格式化
std::string output;
for (const auto& person : people) {
output += fmt::format("Name: {0:<10} | Age: {1:02}\n", person.name, person.age);
}
// 使用 fmt::print 直接输出到标准输出
fmt::print("List of People:\n{}\n", output);
return 0;
}