克服运算符中的“std::endl 属于未知类型”错误
运算符重载是 C 中的一项强大技术,允许自定义数据类型为“
使用“my_stream
在“std::cout”中,运算符“
为“MyStream”实现自定义 endl
引入一个名为“的新成员函数” endl”进入“MyStream”,其签名与运算符“
匹配标准 EndLine 签名
支持“std” ::endl”,我们必须定义另一个“operator
示例代码:
#include <iostream>; struct MyStream { // ... (same as previous code) // MyStream's custom endl static MyStream& endl(MyStream& stream) { // ... (same as previous code) } // Operator<< to accept std::endl MyStream& operator<<(StandardEndLine manip) { // ... (same as previous code) } }; int main(void) { MyStream stream; // ... (same as previous code) stream << MyStream::endl; // Call custom endl stream << std::endl; // Call std::endl directly return 0; }
通过实现这些方法,我们现在可以使用“my_stream
以上是为什么'std::endl”在重载`时会导致'未知类型”错误的详细内容。更多信息请关注PHP中文网其他相关文章!