予約語 (C++)
読み:よやくご
C++
の言語仕様において、用法を規定するものとして、あらかじめ予約されている語。
結果として、
変数名
などに使う事ができない。
目次
予約語の一覧
当初のもの
標準化C++
予約語の一覧
当初のもの
当初の
C++
の予約語は次のとおり。Cにないものは強調してある。
asm
auto
bool
break
case
catch
char
class
const
const_cast
continue
default
delete
do
double
dynamic_cast
else
enum
explicit
export
extern
false
float
for
friend
goto
if
inline
int
long
mutable
namespace
new
operator
private
protected
public
register
reinterpret_cast
return
short
signed
sizeof
static
static_cast
struct
switch
template
this
throw
true
try
typedef
typeid
typename
union
unsigned
using
virtual
void
volatile
wchar_t
while
標準化C++
仕様拡張による、C++での新規予約語は次のとおり。
and
and_eq
bitand
bitor
compl
not
not_eq
or
or_eq
xor
xor_eq
再検索