次の方法で共有


単純型の名前

単純型の名前は単純型の名前です。つまりポインター参照配列または関数ポインターではない型。

class-name
[ :: ] nested-name-specifier type-name
[ :: ] nested-name-specifier template template-id
char
wchar_t
bool
short
int
long
signed
unsigned
float
double
void
auto
decltype ( expression )

解説

単純型の名前が入力した名前指定子で修飾することもできます。名前空間またはコンテナー クラスを示します。

int  // simple type name
unsigned int  // combination of simple type names 
MyClass  // a class type
class MyClass  // class is optional when using the type name
struct MyStruct  // the keyword struct is optional in C++
enum MyEnum  // the keyword enum is optional in C++
::MyClass  // type name at global scope
Outer::Inner  // nested type name
::Outer::Inner  // nested type names with global scope operator
MyTemplate<int>  // a class template
Outer::Inner<int> // an inner class template
Outer<char>::Inner<int>  // an inner class template of a template class
::template MyTemplate<int>  // using the template keyword
typename MyClass  // the typename keyword (only in a template definition)

単純型の名前を一緒に使用する方法を次の表に示します。

型名の組み合わせ

種類

に指定できます。

コメント

int

long か両方 short

型 int は型 long int を意味します。

long

int または double

型 long は型 long int を意味します。

short

int

型 short は型 short int を意味します。

signed

char、short、int、または long

型 signed は signed int を意味します。型 signed char のオブジェクトと符号付き整数型のビット フィールドの最上位ビットに符号ビットとして解釈されます。

unsigned

char、short、int、または long

型 unsigned は unsigned int を意味します。型 unsigned char のオブジェクトと符号なし整数型のビット フィールドの最上位ビットに符号ビットとして扱われません。

参照

関連項目

C++ の型指定子

auto キーワード (の型推論)

decltype 型指定子