📄 dict.h
字号:
// Dict.h: interface for the CDict class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_DICT_H__526703D0_9620_4CE7_ACB5_890606D6B4F1__INCLUDED_)
#define AFX_DICT_H__526703D0_9620_4CE7_ACB5_890606D6B4F1__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CDict
{
public:
CDict();
virtual ~CDict();
char **c[20]; //词库转为按长度存储
int num[20]; //纪录词库中相应长度的单词的数目
void Setdict();
};
#endif // !defined(AFX_DICT_H__526703D0_9620_4CE7_ACB5_890606D6B4F1__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -