include
来自「C实现的MUD,对大家基本入门网络游戏很有帮助!」· 代码 · 共 11 行
TXT
11 行
A line of the form:
#include "filename"
will cause the compiler to pretend that the entire contents of 'filename'
are actually contained in the file being compiled. If you want to include
a certain function in many different objects, use the 'inherit' statement
instead. #including causes each object to have it's own copy of the
code, while inheriting causes many objects to share code.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?