?? ch11cplayer.h
字號:
//Program 11-12 Deal the Cards and Inheritance
//File: Ch11CPlayer.H
#ifndef _CH11CPLAYER_H
#define _CH11CPLAYER_H
#include "Ch11Card.h"
class CPlayer
{
protected:
Card Hand[4]; // the players have a hand of cards
int cards_in_hand;
public:
CPlayer();
void GetCard( Card X );
void ShowHand();
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -