C++ 重载操作符 <<实现模拟输出语句: cout << endl;

简介: C++ 重载操作符 <<实现模拟输出语句: cout << endl;

一、模拟 endl 输出换行并将缓冲区的数据刷新输出到屏幕显示

#include <iostream>
#define Stream std::basic_ostream<T1, T2>&
template<typename T1, typename T2>
Stream CRLF(Stream _out)
{
  putchar('\n');
  return _out.flush(); //清缓冲区 
}
int main(void)
{
  std::cout << "第一行" << CRLF;  //已脱离std::空间 
  CRLF(std::cout);  //还可以这样调用,单独输出一空行 
  std::cout << "第三行" << CRLF;
  //std::cout << "第四行" << endl; //必须用std::endl 
  return 0;
}
/*
第一行
        //第二行是空行
第三行
--------------------------------
Process exited after 1.197 seconds with return value 0
请按任意键继续. . .
*/



以下这样的代码更简洁:

#include <iostream>
std::ostream& endl (std::ostream& _os)
{
  _os.put('\n');
  _os.flush();
  return _os;
}
int main(void)
{
  std::cout << 1 << endl <<endl;  //这是自定义的 endl 
  std::cout << 2 << std::endl;  //这是std的 endl 
  endl(std::cout);      //这是自定义的 endl 
  std::cout << "========" << endl;
  std::endl(std::cout);   //这是std的 endl 
  std::cout << "========" << std::endl;
  return 0;
}
/*
1
2
========
========
--------------------------------
Process exited after 0.9518 seconds with return value 0
请按任意键继续. . .
*/




二、重载操作符 << 模拟输出语句: cout << 123 << "abc\n" << endl;

#include <iostream>
#include <string>
#include <typeinfo>
#define endl "\n"
class myOutText{
public:
    myOutText &operator << (auto s) {
    std::string str;
    if (typeid(s).name()==typeid(std::string("")).name()) str=s;
    if (str==endl) { 
      std::cout << endl;
      std::cout.flush();
    }
    else
      std::cout << s ;
    //return *this; //返回自身引用以支持连续操作
    }
};
int main(void)
{
    myOutText cout; 
  auto a = "abc";
  double b = 8.9;
  cout << "string1-" << a;
    cout << endl;
    cout << "1<<23<<4.56:" << endl;
    cout << 1 << 23 << 4.56e-7 << " "
     << b << endl << "crlf" << endl;
  std::string str = "endl";
    cout << str << endl << endl;
    return 0;
}
/*
string1-abc
1<<23<<4.56:
1234.56e-007 8.9
crlf
endl
--------------------------------
Process exited after 1.198 seconds with return value 0
请按任意键继续. . .
*/


关于<<重载后连续使用的问题还上思否去请教过,感谢TianSong小哥的指点:使用 return *this 返回自身引用。在此放出经他修改过的代码:

#include <iostream>
class myOutText{
public:
    myOutText &operator << (auto s) {
        std::cout << s;
      return *this;
    }
    myOutText &operator << (void(*obj)(myOutText&)) {
      obj(*this);
        return *this;
    }
    void flush() {
        std::cout.flush();
    }
};
void endl(myOutText &obj) 
{
    obj << '\n';
    obj.flush();
}
int main(void)
{
    myOutText cout; 
  std::string str="abcd";
    cout << "string<<" << str << endl;
    cout << "1<<2<<" << endl <<endl;
    cout << 1 << 2.3 << str << endl; 
    return 0;
}
/*
string<<abcd
1<<2<<
12.3abcd
--------------------------------
Process exited after 0.4635 seconds with return value 0
请按任意键继续. . .
*/



TianSong的赠言和遵循的原则,也值得学习:


梅耶(Scott Meyers) 的经典名言 “恭喜大家,坐上了通往未定义道路的宇宙飞船”。

我遵循的两条原则:

  • 编译器警告即错误(除非十分清楚);
  • 违背基础语法、理论的事不做。




目录
相关文章
|
2月前
|
C++
C++(十九)new/delete 重载
本文介绍了C++中`operator new/delete`重载的使用方法,并通过示例代码展示了如何自定义内存分配与释放的行为。重载`new`和`delete`可以实现内存的精细控制,而`new[]`和`delete[]`则用于处理数组的内存管理。不当使用可能导致内存泄漏或错误释放。
|
3月前
|
存储 C++
【C/C++学习笔记】string 类型的输入操作符和 getline 函数分别如何处理空白字符
【C/C++学习笔记】string 类型的输入操作符和 getline 函数分别如何处理空白字符
42 0
|
4月前
|
NoSQL 编译器 Redis
c++开发redis module问题之如果Redis加载了多个C++编写的模块,并且它们都重载了operator new,会有什么影响
c++开发redis module问题之如果Redis加载了多个C++编写的模块,并且它们都重载了operator new,会有什么影响
|
4月前
|
存储 C++
【C++】string类的使用③(非成员函数重载Non-member function overloads)
这篇文章探讨了C++中`std::string`的`replace`和`swap`函数以及非成员函数重载。`replace`提供了多种方式替换字符串中的部分内容,包括使用字符串、子串、字符、字符数组和填充字符。`swap`函数用于交换两个`string`对象的内容,成员函数版本效率更高。非成员函数重载包括`operator+`实现字符串连接,关系运算符(如`==`, `&lt;`等)用于比较字符串,以及`swap`非成员函数。此外,还介绍了`getline`函数,用于按指定分隔符从输入流中读取字符串。文章强调了非成员函数在特定情况下的作用,并给出了多个示例代码。
|
4月前
|
NoSQL Redis C++
c++开发redis module问题之避免多个C++模块之间因重载operator new而产生的冲突,如何解决
c++开发redis module问题之避免多个C++模块之间因重载operator new而产生的冲突,如何解决
|
5月前
|
C++
C++函数的默认参数、占位符、重载
C++函数的默认参数、占位符、重载
|
8天前
|
存储 编译器 C++
【c++】类和对象(中)(构造函数、析构函数、拷贝构造、赋值重载)
本文深入探讨了C++类的默认成员函数,包括构造函数、析构函数、拷贝构造函数和赋值重载。构造函数用于对象的初始化,析构函数用于对象销毁时的资源清理,拷贝构造函数用于对象的拷贝,赋值重载用于已存在对象的赋值。文章详细介绍了每个函数的特点、使用方法及注意事项,并提供了代码示例。这些默认成员函数确保了资源的正确管理和对象状态的维护。
34 4
|
9天前
|
存储 编译器 Linux
【c++】类和对象(上)(类的定义格式、访问限定符、类域、类的实例化、对象的内存大小、this指针)
本文介绍了C++中的类和对象,包括类的概念、定义格式、访问限定符、类域、对象的创建及内存大小、以及this指针。通过示例代码详细解释了类的定义、成员函数和成员变量的作用,以及如何使用访问限定符控制成员的访问权限。此外,还讨论了对象的内存分配规则和this指针的使用场景,帮助读者深入理解面向对象编程的核心概念。
32 4
|
1月前
|
存储 编译器 对象存储
【C++打怪之路Lv5】-- 类和对象(下)
【C++打怪之路Lv5】-- 类和对象(下)
27 4
|
1月前
|
编译器 C语言 C++
【C++打怪之路Lv4】-- 类和对象(中)
【C++打怪之路Lv4】-- 类和对象(中)
23 4