ch11cplayer.h
来自「此例子是学习C++的好东西」· C头文件 代码 · 共 25 行
H
25 行
//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 + =
减小字号Ctrl + -
显示快捷键?