📄 ngca_00.cc
字号:
// file: $isip/class/search/NGramCache/ngca_00.cc// version: $Id: ngca_00.cc,v 1.2 2003/04/19 20:52:58 parihar Exp $//// isip include files//#include "NGramCache.h"// method: default constructor//// arguments: none//// return: none//// this is the default constructor for the NGramCache class//NGramCache::NGramCache() { // initialize the cache // cache_d.setCapacity(DEF_CAPACITY);}// method: copy constructor//// arguments:// const NGramCache& arg: (input) node to copy//// return: none//// this is the copy constructor for the NGramCache class//NGramCache::NGramCache(const NGramCache& arg_a) { assign(arg_a);}// constants: required constants such as class name//const String NGramCache::CLASS_NAME(L"NGramCache");// constants: i/o related constants//const String NGramCache::DEF_PARAM(L"NGramCache");// static instantiations: memory manager and debug level//MemoryManager NGramCache::mgr_d(sizeof(NGramCache), name());Integral::DEBUG NGramCache::debug_level_d = Integral::NONE;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -