14_3.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:
C#编程
开发平台:
Visual C++
- //14_3
- #include <iostream.h>
- class X{
- public:
- X(int);
- X(X&);
- ~X();
- };
- X::X(int s){ cout <<"create a X object with " <<s <<endl; }
- X::X(X& x){ cout <<"create a X object from other X objectn"; }
- X::~X(){ cout <<"erase a objectn"; }
- X f(X x)
- {
- cout <<"call a func with para X objectn";
- return x;
- }
- void main()
- {
- X a(1);
- X b=f(X(2));
- a=f(a);
- }