⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 11_19.cpp

📁 c++案例教程源代码
💻 CPP
字号:
#include <iostream>
#include <iomanip>
using namespace std;
class NoParam    
{int  integer;
public :
	NoParam(int x  = 0)    {integer= x;}
	friend  ostream&  operator <<(ostream&, NoParam&);
	friend  istream&  operator >>(istream&, NoParam&);
};
istream&  operator >> (istream &is, NoParam &np){	return is  >>np.integer;}
ostream&  operator << (ostream &os, NoParam &np){	return os << np.integer;}
ostream&  arrow(ostream &os)	{	return os  <<"-->";}	//定义无参操作操纵符
int main ()
{	NoParam np(5);
	cout << "The object is:"<<np <<endl;
	cout << "Object np" << arrow << np << endl;			//使用无参操纵符
	return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -