资源简介
vc6.0 实现的多电梯调度,源代码,可以直接使用,课程设计
代码片段和文件信息
// BitMap.cpp: implementation of the CBitString class.
//
//////////////////////////////////////////////////////////////////////
#include “stdafx.h“
#include “BitString.h“
/*####################################################################
模块名称: 位向量
开发作者: 漫步阳光
开发时间: @2005.11
####################################################################*/
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CBitString::CBitString()
{
//AfxMessageBox(“CBitString :: construction.“);
m_iStrLen = 10;
m_wBitString = WORD(0);
}
CBitString::CBitString(int iStrLen)
{
//AfxMessageBox(“CBitString :: construction.“);
if(iStrLen>32) return;
m_iStrLen = iStrLen;
m_wBitString = WORD(0);
}
CBitString::~CBitString()
{
}
//置位
void CBitString::setBit(int index)
{
if(index<1 || index>m_iStrLen) return;
/*
CString tempStr=““;
tempStr
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2005-12-08 13:24 Elevator
文件 1448 2005-12-06 22:48 Elevator\AboutDlg.h
文件 758 2005-11-27 17:21 Elevator\bitmap1.bmp
文件 1564 2005-11-28 18:27 Elevator\BitString.cpp
文件 1578 2005-11-28 18:25 Elevator\BitString.h
文件 766 2005-11-27 17:09 Elevator\bjx.ico
文件 3430 2005-11-29 18:08 Elevator\CircleSingleli
文件 6658 1998-11-30 16:00 Elevator\ColorStaticST.cpp
文件 1736 2005-12-01 22:51 Elevator\ColorStaticST.h
文件 1754 2005-12-03 21:55 Elevator\CommonInc.h
文件 457032 2005-11-28 23:18 Elevator\cover.bmp
文件 480648 2005-11-29 23:05 Elevator\Elevator.aps
文件 2227 2005-12-07 22:06 Elevator\Elevator.clw
文件 3940 2005-12-06 22:44 Elevator\Elevator.cpp
文件 5401 2005-12-07 22:07 Elevator\Elevator.dsp
文件 533 2005-11-09 12:26 Elevator\Elevator.dsw
文件 1333 2005-12-01 22:52 Elevator\Elevator.h
文件 181248 2005-12-07 22:07 Elevator\Elevator.ncb
文件 56832 2005-12-07 22:07 Elevator\Elevator.opt
文件 1917 2005-12-07 21:48 Elevator\Elevator.plg
文件 6993 2005-11-29 23:05 Elevator\Elevator.rc
文件 21446 2005-12-07 20:46 Elevator\ElevatorDlg.cpp
文件 3553 2005-12-03 23:15 Elevator\ElevatorDlg.h
文件 766 2005-11-17 16:00 Elevator\icon1.ico
文件 3515 2005-11-22 20:57 Elevator\IniFile.cpp
文件 1201 2005-11-22 20:57 Elevator\IniFile.h
文件 12187 2005-12-07 21:29 Elevator\MainDlg.cpp
文件 2169 2005-12-07 21:26 Elevator\MainDlg.h
文件 3932 2005-11-22 20:40 Elevator\myLogFile.h
文件 1041 2005-11-27 15:43 Elevator\MyTimer.cpp
............此处省略17个文件信息
- 上一篇:迷宫问题,C语言写的
- 下一篇:SURF源码 win C++
相关资源
- ffplay for MFC 1.1 源代码
- C++参考大全 第四版 高清扫描版
- 物资管理系统c++和sql
- SGM C++代码 VS2013
- 操作系统概念:进程调度算法FCFS、
- C++Primer及ppt
- MFC键盘监视器
- picc8.05编译器+注册机完全版+PIC C语言
- vc++ MFC 背单词软件毕业设计系统源代
- msdn for vc++6.0
- GPS单点定位程序C++
- MIF 文件读取,简单的GIS系统,附带
- VC++2010番茄西红柿VAXvirsual assist X完美
- Essential C++ 中文版
- IC卡停车场管理系统源代码
- 消解原理实现有界面
- C++ 课程设计 大作业 背单词小软件
- VS2005下TCP网络编程,亲自调试成功w
- MFC__快捷菜单管理器
- MFC最小化至系统托盘源码
- C++C#互通DES加密算法
- OPCDA服务器与客户程序开发指南 书籍
- [MPI与OpenMP并行程序设计:C语言版].(
- C++ Qt设计模式第2版中文版
- 读取图片并显示的MFC程序
- MFC贪吃蛇完美运行
- Vc++编写的计算器简单小程序
- Programming -- Principles and Practice Using C
- 中国海洋大学C++课程期末资料
- The C++ Programming Language 4th Edition.pdf
评论
共有 条评论