📄 goods.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 + -