goods.h

来自「此文件可以能帮你求体积」· C头文件 代码 · 共 27 行

H
27
字号
// Goods.h: interface for the Goods class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_GOODS_H__06B2A9C0_1958_4961_B2A5_2441F20D7711__INCLUDED_)
#define AFX_GOODS_H__06B2A9C0_1958_4961_B2A5_2441F20D7711__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class Goods  
{
public:
	static int GetTotal();
	int Get();
	Goods( int w );
	Goods( Goods& gd );
	virtual ~Goods();

private:
	int weight;
	static int totalWeight;
};

#endif // !defined(AFX_GOODS_H__06B2A9C0_1958_4961_B2A5_2441F20D7711__INCLUDED_)

⌨️ 快捷键说明

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