超载<<运营商ostream
为什么下面的行不起作用?
#include <iostream>
std::ostream& operator <<( std::ostream& os, const char *c)
{
os << c; // why does this line doesn't work?
return os;
}
int main()
{
const char *c = "Hi";
std::cout << c;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是 std::ostream&运算符 <<( std::ostream& os, const char *c) 已在 iostream 中重载。
The problem is
std::ostream& operator <<( std::ostream& os, const char *c)
has already been overloaded in iostream.