資源簡介
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++
評論
共有 條評論