- 1、本文档共8页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C关键字-511.
bool
声明布尔类型的变量或函数.
char
声明字符型变量或函数.
short
声明短整型变量或函数.
signed,unsigned
声明有符号类型变量或函数;声明无符号类型变量或函数.
int
声明整型变量或函数.
long
声明长整型变量或函数.
false,true
bool类型的两个枚举值.
float
声明浮点型变量或函数.
double
声明双精度变量或函数.
enum
声明枚举类型.
The name of each enumerator is treated as a constant and must be unique within the scope where the enum is defined.
class
声明或定义类或者类的对象.
The class keyword declares a class type or defines an object of a class type.
break
跳出当前循环.
continue
结束当前循环,开始下一轮循环.
goto
无条件跳转语句.
Performs an unconditional transfer of control to the named label.
switch
Allows selection among multiple sections of code, depending on the value of an integral expression.
允许选择多个之间的代码段,这取决于一个整体的价值表达
default
switch语句中的默认分支.
case
switch语句分支.
new
动态内存分配.
Allocates memory for an object or array of objects of type-name from the free store and returns a suitably typed, nonzero pointer to the object.
分配内存的对象或数组类型的对象从自由的名义存储和返回一个适当类型,非零对象的指针
delete
经常用于动态内存分配的语句,Deallocates a block of memory.
do
在do-while循环结构中开始循环体.Executes a statement repeatedly until the specified termination condition (the expression) evaluates to zero.
while
循环语句的循环条件
if
条件语句.
Controls conditional branching.
常与else一起用.
else
条件语句否定分支(与 if 连用).
for
一种循环语句(可意会不可言传).
Use the for statement to construct loops that must execute a specified number of times.
inline
声明定义内联函数,编译时将所调用的代码嵌入到主函数中.
The inline specifiers instruct the compiler to insert a copy of the function body into each place the function is called.
namespace
Dynamically imports an element behavior into a document.
动态导入到文档中的元素行为
public
访问方式When preceding a list of class members, the public keyword specifies that those members are accessible from any function. This applies to all members declared up to the next access specifier or the end of the class.
当上一类成员,市民关键字列表指定的成员可以从任何功能。这适用于所有成员宣布到明年访问符或类的结束
return
子程序返回语句(可以带参数,也看不带参数)返回函数调用点.
Terminates t
文档评论(0)