phrase.h
来自「Since the field of object oriented progr」· C头文件 代码 · 共 26 行
H
26 行
// Chapter 6 - Program 11 - PHRASE.H
#ifndef PHRASE_H
#define PHRASE_H
class phrase
{
char verb[10];
char noun[10];
static char full_phrase[25];
public:
inline phrase(void);
inline void set_noun(char *in_noun);
inline void set_verb(char *in_verb);
inline char *get_phrase(void);
};
#include "phrase.inl"
#endif
// Result of execution
//
// (This file cannot be executed)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?