• 大小: 1.58MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-03
  • 标签: C++  

资源简介

非常适合C++初学者做实践 继承、多态特性表现得淋漓尽致

资源截图

代码片段和文件信息

// ard.cpp: implementation of the Card class.
//
//////////////////////////////////////////////////////////////////////

#include “stdafx.h“
#include “Poker.h“
#include “Card.h“

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

Card::Card()
{

CardHeight = 96;
CardWidth = 71;
}

Card::~Card()
{

}
//画扑克牌函数
void Card::Draw(CDC *dc int cx int cy)
{
if(IsSelected==true)
cy=cy-20;
//计算画扑克牌的位置
left=cx;
top=cy;
bottom=cy+CardHeight;
right=cx+CardWidth;

CDC tDC;
//创建内存DC
tDC.CreateCompatibleDC(NULL);
CBitmap bm;
//装载BMP图片

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1321  2010-12-02 20:04  Poker\Card.cpp

     文件        956  2010-12-02 19:58  Poker\Card.h

     文件    3154944  2010-11-27 01:19  Poker\Debug\Poker.bsc

     文件        743  2010-11-29 01:19  Poker\DouDiZhu.cpp

     文件        696  2010-12-02 20:36  Poker\DouDiZhu.h

     文件       1277  2010-11-29 01:19  Poker\Game.cpp

     文件       1419  2010-12-02 20:22  Poker\Game.h

     文件        258  2010-12-02 20:38  Poker\Global.h

     文件       3741  2010-12-02 20:47  Poker\HongXinDaZhan.cpp

     文件        774  2010-12-02 20:23  Poker\HongXinDaZhan.h

     文件       2653  2010-11-25 02:10  Poker\MainFrm.cpp

     文件       1585  2010-11-24 02:00  Poker\MainFrm.h

     文件       3802  2010-12-02 20:47  Poker\Player.cpp

     文件       1566  2010-12-02 20:35  Poker\Player.h

     文件    2627828  2010-11-25 12:45  Poker\Poker.aps

     文件       1390  2010-11-29 02:41  Poker\Poker.clw

     文件       4158  2010-11-24 01:42  Poker\Poker.cpp

     文件       9977  2010-11-29 00:29  Poker\Poker.dsp

     文件        516  2010-11-24 01:42  Poker\Poker.dsw

     文件       1345  2010-11-24 01:42  Poker\Poker.h

     文件     115712  2010-12-02 20:52  Poker\Poker.ncb

     文件      59904  2010-12-02 20:52  Poker\Poker.opt

     文件       1336  2010-12-02 20:52  Poker\Poker.plg

     文件      10153  2010-11-25 12:45  Poker\Poker.rc

     文件       1194  2010-11-28 01:16  Poker\PokerCtrl.cpp

     文件        831  2010-12-02 20:41  Poker\PokerCtrl.h

     文件       1728  2010-11-24 20:13  Poker\PokerDoc.cpp

     文件       1468  2010-11-24 20:12  Poker\PokerDoc.h

     文件       4060  2010-12-02 20:52  Poker\PokerView.cpp

     文件       1999  2010-11-27 20:26  Poker\PokerView.h

............此处省略82个文件信息

评论

共有 条评论