ngca_00.cc
来自「这是一个从音频信号里提取特征参量的程序」· CC 代码 · 共 49 行
CC
49 行
// 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 + =
减小字号Ctrl + -
显示快捷键?