📄 cb_cstr_1.cc
字号:
// file: circular_buffer/cb_cstr_1.cc//// isip include files//#include "CircularBuffer.h"// method: constructor//// arguments:// // int dim: (input) dimensions of circular buffer// int num_elements: (input) maximum size of circular buffer//// return: none//// this is the constructor for the class//Circular_buffer::Circular_buffer(int dim, int num_elements) { idx_d = (int*)NULL; num_d = (int*)NULL; buf_d = (float_8**)NULL; allocate_cc(dim, num_elements);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -