?? goods.h
字號(hào):
// 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_)
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -