⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 memstats.cc

📁 这是一款很好用的工具包
💻 CC
字号:
/* * MemStats.cc -- *	Memory statistics. * */#ifndef lintstatic char Copyright[] = "Copyright (c) 1995, SRI International.  All Rights Reserved.";static char RcsId[] = "@(#)$Header: /home/srilm/devel/dstruct/src/RCS/MemStats.cc,v 1.4 1998/10/31 08:09:10 stolcke Exp $";#endif#include "MemStats.h"const size_t MB = 1024 * 1024;MemStats::MemStats()    : total(0), wasted(0){}voidMemStats::clear(){    total = 0;    wasted = 0;}ostream &MemStats::print(ostream &stream){    return stream << "total memory " << total		  << " (" << ((float)total/MB) << "M)" 		  << ", used " << (total - wasted)		  << " (" << ((float)(total - wasted)/MB) << "M)"		  << ", wasted " << wasted		  << " (" << ((float)wasted/MB) << "M)"		  << endl;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -