13.cpp

来自「一、教学目的: 能理解C++中运算符重载的需要性」· C++ 代码 · 共 23 行

CPP
23
字号
#include<iostream.h> 
#include<string.h>

class SmallOne
{
public:
	SmallOne(int sma)
	{
		cout<<"Smalllone constructing with a value of "<<sma<<endl;
	}
};
void fn(int n)
{
	static SmallOne sm(n);
	cout<<"In function fn with n= "<<n<<endl;
}
void main()
{
	fn(10);
	fn(20);
	return;
}

⌨️ 快捷键说明

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