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

📄 goods.cpp

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

#include "stdafx.h"
#include "Goods.h"

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

int Goods::totalWeight = 0;

Goods::Goods( int w )
{
	weight = w;
	totalWeight += w;
}

Goods::Goods( Goods& gd )
{
	weight = gd.weight;
	totalWeight += weight;
}

Goods::~Goods()
{
	totalWeight -= weight;
}

int Goods::Get()
{
	return weight;
}

int Goods::GetTotal()
{
	return totalWeight;
}

⌨️ 快捷键说明

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