format:C++ 的花括号字符串格式

时间:2024-07-28 07:58:25
【文件属性】:

文件名称:format:C++ 的花括号字符串格式

文件大小:3KB

文件格式:ZIP

更新时间:2024-07-28 07:58:25

C++

格式 C++ 的花括号字符串格式,如 Python 和 C#。 尚不处理浮点格式说明符或隐式参数索引,但可以正确处理转义大括号"{{" 。 // char buf[32]; // sprintf(buf, "(%d, %f, %f)", vec.x, vec.y, vec.z); // spot the mistakes! // std::stringstream ss; // ss << "(" << vec.x << ", " << vec.y << ", " << vec.z << ")"; // ugly! std::string s = format("({0}, {1}, {2})", vec.x, vec.y, vec.z); // yes!


【文件预览】:
format-master
----.gitignore(496B)
----test.cpp(1KB)
----format.hpp(6KB)
----README.md(497B)

网友评论