本文主要是介绍重载左移运算符,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
重载左移运算符
#include<iostream>
using namespace std;
#include<string>//左移运算符重载class Person
{
public://利用成员函数重载,左移运算符 p.operator(cout) 简化版本 p<<cout//不会利用成员函数重载左移运算符,无法实现cout在左侧
// void operator<<(cout)
这篇关于重载左移运算符的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!