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

📄 myclass.cpp

📁 此文件可以能帮你求体积
💻 CPP
字号:
// MyClass.cpp: implementation of the MyClass class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "MyClass.h"
#include <iostream.h>
#include <stdlib.h>

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

MyClass::MyClass( int i )
{
	p = new int;
	if ( !p )
	{
		cout << "Allocation error\n";
		exit(1);
	}

	*p = i;
}

MyClass::~MyClass()
{
	delete p;
}

#if _SONGK_USE_CP_CTOR_
MyClass::MyClass( const MyClass& obj )
{
	if ( p != NULL )
	{
		delete p;
		p = NULL;
	}

	p = new int;
	if (!p)
	{
		cout << "Allocation error\n";
		exit(1);
	}

	*p = *obj.p;
}
#endif

int GetVal( MyClass obj )
{
	return *obj.p;
}


⌨️ 快捷键说明

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