std::string str = "Hello";
printf(str); // 错误,应该使用 printf("%s", str.c_str());
std::string str = "Hello";
printf("%s", str); // 错误,应该使用 printf("%s", str.c_str());
std::string str = "Hello";
printf("%s", str.c_str()); // 没有换行符
std::string str = "Hello";
printf("%d", str.c_str()); // 错误,应该使用 %s 占位符