📄 memoryblock.h
字号:
// MemoryBlock.h: interface for the CMemoryBlock class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MEMORYBLOCK_H__BB291145_6964_4597_9E3B_AB709F0E21BB__INCLUDED_)
#define AFX_MEMORYBLOCK_H__BB291145_6964_4597_9E3B_AB709F0E21BB__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CMemoryBlock //内存块
{
public:
CMemoryBlock();
virtual ~CMemoryBlock();
public:
int m_MemoryBlockNum;//内存块号
long m_MemoryAdress; //内存地址
bool m_free; //内存空闲?
long m_size; //内存容量
};
#endif // !defined(AFX_MEMORYBLOCK_H__BB291145_6964_4597_9E3B_AB709F0E21BB__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -