阅读量:0
在C++中,"primary"并不是一个关键字
- 类型:
int
,float
,double
,char
,bool
等。 - 存储类:
auto
,register
,static
,extern
,mutable
等。 - 访问控制:
public
,private
,protected
等。 - 运算符:
+
,-
,*
,/
,%
,++
,--
,==
,!=
,<
,>
,<=
,>=
,&&
,||
,!
,&
,|
,^
,~
,<<
,>>
,+=
,-=
,*=
,/=
,%=
,&=
,|=
,^=
,<<=
,>>=
等。 - 控制语句:
if
,else
,switch
,case
,default
,for
,while
,do
,break
,continue
,goto
,return
等。 - 其他:
sizeof
,new
,delete
,this
,true
,false
,nullptr
等。
这些关键字在C++编程中起着重要作用,它们共同构成了C++语言的基本框架和语法规则。