📄 inst_00.cc
字号:
// file: $isip/class/search/Instance/inst_00.cc// version: $Id: inst_00.cc,v 1.7 2003/02/15 17:08:30 alphonso Exp $//// isip include files//#include "Instance.h"// method: destructor//// arguments: none//// return: none//// this is the default destructor for the Instance class//Instance::~Instance() { if (debug_level_d >= Integral::ALL) { fprintf(stdout, "Destructor of instance: %p\n", this); fflush(stdout); } clear();}// constants: required constants such as class name//const String Instance::CLASS_NAME(L"Instance");// static instantiations: memory manager, debug level and verbosity//MemoryManager Instance::mgr_d(sizeof(Instance), CLASS_NAME);Ulong Instance::nsymbol_length_d = DEF_NSYMBOL_LENGTH;Integral::DEBUG Instance::debug_level_d = Integral::NONE;//// end of file
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -