tr_phn_cstr_0.cc

来自「这是处理语音信号的程序」· CC 代码 · 共 41 行

CC
41
字号
// file: tr_phn_cstr_0.cc//// isip include files//#include "train_phone.h"#include "train_phone_constants.h"// method: destructor//// arguments: none//// return: none//// this is the default destructor//Train_Phone::~Train_Phone() {    // clean up memory and reset  //  if (name_d != (char_1*)NULL) {    delete [] name_d;  }  name_d = (char_1*)NULL;  if (phones_d != (int_4*)NULL) {    delete [] phones_d;  }  phones_d = (int_4*)NULL;    // clean up the model  //  model_d = (Train_Model*)NULL;  active_d = ISIP_FALSE;    // exit gracefully  //}

⌨️ 快捷键说明

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