尽管 std::string 是 std 命名空间的成员,但尝试将其与 printf 一起使用会导致意外的结果行为,如以下代码片段所示:
#include <iostream> #include <string> int main() { using namespace std; string myString = "Press ENTER to quit program!"; cout << "Come up and C++ me some time." << endl; printf("Follow this command: %s", myString); cin.get(); return 0; }
出现此问题是因为 printf 不是类型安全的并且依赖于C 风格的字符串。要解决此问题,有几种方法可用:
由于 std::string 支持运算符重载,因此可以使用 std::cout:
std::cout << "Follow this command: " << myString;
如果需要提取 C 风格字符串,则c_str() 方法可用于获取以 null 结尾的 const char *:
printf("Follow this command: %s", myString.c_str());
或者,可变参数模板可以提供 printf 的类型安全替代方案。可以在此处找到示例实现:https://stackoverflow.com/a/15014001。 Boost 提供了与 boost::format 类似的功能。
C 23 更新
C 23 引入了 std::print,它结合了两种方法的优点,允许使用 std::format:
#include <print> std::print("Follow this command: {}", myString);
以上是为什么 `printf` 会导致 `std::string` 出现意外行为,以及如何修复它?的详细内容。更多信息请关注PHP中文网其他相关文章!