gpt4 book ai didi

c++ - 如何让一个类作为 printf_s/sprintf_s 的字符串?

转载 作者:太空宇宙 更新时间:2023-11-04 05:11:03 26 4
gpt4 key购买 nike

我正在尝试创建一个类,比如说 MyClass,在以下条件下工作:

MyClass name = "everyone";   // Assigns "everyone" into a local string variable.
printf_s("Hello %s!", name); // Should output "Hello everyone!" without the quotes.

我试过重载 operator const char*() 以及 operator char*() 但似乎都没有成功。

最佳答案

如果用 operator const char* 重载它,你可以显式地转换它:

MyClass name = "everyone";
printf_s("Hello %s!", (const char*)name);
// prints "Hello everyone!"

然后它会正常运行。因为printf,它不能隐式工作可以在第一个参数之后采用任何类型的参数,因此编译器不知道要尝试将其转换为什么。

当然,这假设 operator const char*你的类返回 C 风格的字符串 everyone .

正如 Tomalak Geret'kal 在评论中指出的那样,让您的类隐式转换为 const char*可能会导致很多问题,因为它可以在您不知情/不希望的情况下转换自己。

正如 Kerrek SB 也指出的那样,让您的类(class)与 printf 兼容可能不值得。 ,因为这毕竟是 C++。写一个 operator<< 会更好ostream& 过载小号:

ostream& operator<<(ostream& rhs, const MyClass& c) {
rhs << c.name; // assuming the argument to the constructor
// is stored in the member variable name

return rhs;
}

MyClass name = "everyone";
cout << "Hello " << name << '!';

// prints "Hello everyone!"

关于c++ - 如何让一个类作为 printf_s/sprintf_s 的字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7237234/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com