资源简介
操作系统存储管理LRU
同学做的 很强的~~
代码片段和文件信息
// LRU.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “LRU.h“
#include “LRUDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CLRUApp
BEGIN_MESSAGE_MAP(CLRUApp CWinApp)
//{{AFX_MSG_MAP(CLRUApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CLRUApp construction
CLRUApp::CLRUApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CLRUApp object
CLRUApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CLRUApp initialization
BOOL CLRUApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CLRUDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 114791 2008-10-15 15:46 LRU\Debug\LRU.exe
文件 216640 2008-10-15 15:46 LRU\Debug\LRU.ilk
文件 14501 2008-10-15 09:42 LRU\Debug\LRU.obj
文件 5505248 2008-10-15 09:22 LRU\Debug\LRU.pch
文件 402432 2008-10-15 15:46 LRU\Debug\LRU.pdb
文件 3428 2008-10-15 15:38 LRU\Debug\LRU.res
文件 43441 2008-10-15 15:46 LRU\Debug\LRUDlg.obj
文件 105727 2008-10-15 09:22 LRU\Debug\StdAfx.obj
文件 214016 2008-10-15 15:46 LRU\Debug\vc60.idb
文件 372736 2008-10-15 15:46 LRU\Debug\vc60.pdb
文件 37576 2008-10-15 15:38 LRU\LRU.APS
文件 2007 2008-10-15 15:46 LRU\LRU.clw
文件 2021 2008-10-15 09:22 LRU\LRU.cpp
文件 4105 2008-10-15 09:22 LRU\LRU.dsp
文件 531 2008-10-15 09:35 LRU\LRU.dsw
文件 1291 2008-10-15 09:22 LRU\LRU.h
文件 66560 2008-10-15 15:47 LRU\LRU.ncb
文件 53760 2008-10-15 15:47 LRU\LRU.opt
文件 959 2008-10-15 15:46 LRU\LRU.plg
文件 7023 2008-10-15 15:38 LRU\LRU.rc
文件 9896 2008-10-15 15:46 LRU\LRUDlg.cpp
文件 1855 2008-10-15 09:42 LRU\LRUDlg.h
文件 3525 2008-10-15 09:22 LRU\ReadMe.txt
文件 1078 2008-10-15 09:22 LRU\res\LRU.ico
文件 395 2008-10-15 09:22 LRU\res\LRU.rc2
文件 1279 2008-10-15 09:42 LRU\Resource.h
文件 205 2008-10-15 09:22 LRU\StdAfx.cpp
文件 1054 2008-10-15 09:22 LRU\StdAfx.h
目录 0 2009-05-13 19:52 LRU\Debug
目录 0 2009-05-13 19:52 LRU\res
............此处省略4个文件信息
相关资源
- 操作系统文件管理,设备管理,进程
-
listview+ba
seAdapter + AsyncTask异步请求网 - 操作系统课设 分页式存储管理内含
- 模拟设计页式存储管理的分配与回收
- 动态分区分配存储管理-操作系统课程
- 模拟设计段式虚拟存储管理中地址转
- Netapp存储管理系统中文版
- 嵌入式学习成长记
- 操作系统课程设计-段页式存储管理的
- 操作系统模拟分页式存储管理中硬件
- ListView异步加载图片
- 页面置换算法FIFO,LRU,最佳和Clock四
- 操作系统虚拟分页存储管理,LRU页面
- 东华大学 操作系统实验 存储管理 含
- 编写程序实现虚拟存储管理中OPTFIFO
- 可变分区存储管理[附答案]
- 操作系统-基本分页存储管理(内有代
- 编程演示三种存储管理方式的地址换
- 模拟设计动态分区存储管理的分配与
- 操作系统页面内存页面置换算法OPT、
- 请求调页存储管理方式课程设计LRU
- 模拟段式存储管理的分配与回收操作
- 存储管理实验首次适应算法循环首次
- 操作系统课程设计之存储管理—动态
- 模拟分页式存储管理中硬件的地址转
- 模拟系统请求分页式存储管理
- 页式虚拟存储管理中地址转换和缺页
- 操作系统-页式存储管理
- 动态分区存储管理方式的主存分配回
- 操作系统实验报告 存储管理
评论
共有 条评论