资源简介
非常适合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\Pla
文件 1566 2010-12-02 20:35 Poker\Pla
文件 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个文件信息
- 上一篇:MFC设计局域网对战五子棋游戏源代码
- 下一篇:编译原理课程设计,源码+报告
相关资源
- Thinking in C++中文版
- C++语言程序设计_第四版_郑莉_高清p
- 东南大学C++课件-何洁月80讲(总).
- DevC++
- C/C++实验系统
- 一个月挑战c++
- vsC++编程新手指导
- C++语言编程器
- VS2008 windows应用程序C++
- C++深入版
- C++PPT
- C++沉思录
- c++核心编程技术
- C++出错提示英汉对照
- c++/c语言学习系统
- C和C++安全编码(中文版)
- c++基础教程
- VC++6.0
- Microsoft Visual C++ 2010
- 嵌入式CC++语言精华文章集锦
- 交通灯管理仿真程序
- CC++库函数
- C++_STL使用例子大全
- C C++精华帖合辑(新手必看)
- C++ 基本语法及实例说明
- 《算法竞赛入门经典》
- C++API
- c++深度剖析木马程序
- c++练习题
- vc++6.0初学入门教程(PDF编辑版)
评论
共有 条评论