Fixed width integer types (desde C++11) - cppreference.com
Espaços nominais
Variantes
Ações

Fixed width integer types (desde C++11)

De cppreference.com

<metanoindex/>

 
 
Biblioteca de utilitários
Digite apoio (basic types, RTTI, type traits)
Gerenciamento de memória dinâmica
De tratamento de erros
Utilidades do programa
Variadic funções
Data e hora
Objetos de função
(C++11)
Os operadores relacionais
Original:
Relational operators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
rel_ops::operator!=
rel_ops::operator>
rel_ops::operator<=
rel_ops::operator>=
Pares e tuplas
Original:
Pairs and tuples
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
Troque, avançar e avançar
Original:
Swap, forward and move
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
 
Apoio a tipos
Tipos básicos
Original:
Basic types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Tipos fundamentais
Tipos inteiros de largura fixos (C++11)
Limites numéricos
Original:
Numeric limits
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
C numérico limita interface
Informações de tipo de tempo de execução
Original:
Runtime type information
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Características de tipo
Original:
Type traits
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Principais categorias de tipo
Original:
Primary type categories
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
Propriedades de tipo
Original:
Type properties
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
Operações apoiadas
Original:
Supported operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Relacionamentos e consultas de propriedade
Original:
Relationships and property queries
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
(C++11)
Tipo modificações
Original:
Type modifications
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)(C++11)(C++11)
Transformações tipo
Original:
Type transformations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
Digite constantes traço
Original:
Type trait constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 

Tipos

Defined in header <cstdint>
int8_t
int16_t
int32_t
int64_t
tipo inteiro (com sinal) com tamanho de exatamente 8, 16, 32 e 64 bits, respectivamente, com bits não-padding e usando complemento de 2 para valores negativos (fornecida apenas se a aplicação suporta diretamente o tipo)
int_fast8_t
int_fast16_t
int_fast32_t
int_fast64_t
tipo inteiro (com sinal) mais rápido com tamanho de pelo menos 8, 16, 32 e 64 bits, respectivamente
int_least8_t
int_least16_t
int_least32_t
int_least64_t
tipo inteiro (com sinal) com tamanho de pelo menos, 8, 16, 32 e 64 bits, respectivamente
intmax_t tipo inteiro de tamanho máximo
intptr_t tipo inteiro capaz de manter um ponteiro
uint8_t
uint16_t
uint32_t
uint64_t
tipo inteiro sem sinal com tamanho de exatamente 8, 16, 32 e 64 bits, respectivamente (fornecida apenas se a aplicação suporta diretamente o tipo)
uint_fast8_t
uint_fast16_t
uint_fast32_t
uint_fast64_t
mais rápido tipo inteiro (sem sinal) com tamanho, no mínimo, de 8, 16, 32 e 64 bits, respectivamente
uint_least8_t
uint_least16_t
uint_least32_t
uint_least64_t
menor tipo inteiro (sem sinal) com tamanho de pelo menos 8, 16, 32 e 64 bits, respectivamente
uintmax_t tipo inteiro (sem sinal) de tamanho máximo
uintptr_t tipo inteiro (sem sinal) capaz de armazenar um ponteiro

Constantes de macros

Defined in header <cstdint>
Inteiros assinados: valor mínimo
Original:
Signed integers : minimum value
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
INT8_MIN
INT16_MIN
INT32_MIN
INT64_MIN
valor mínimo de um objeto do tipo int8_t, int16_t, int32_t, int64_t
Original:
minimum value of an object of type int8_t, int16_t, int32_t, int64_t
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(macro constante)
INT_FAST8_MIN
INT_FAST16_MIN
INT_FAST32_MIN
INT_FAST64_MIN
valor mínimo de um objeto do tipo int_fast8_t, int_fast16_t, int_fast32_t, int_fast64_t
Original:
minimum value of an object of type int_fast8_t, int_fast16_t, int_fast32_t, int_fast64_t
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(macro constante)
INT_LEAST8_MIN
INT_LEAST16_MIN
INT_LEAST32_MIN
INT_LEAST64_MIN
valor mínimo de um objeto do tipo int_least8_t, int_least16_t, int_least32_t, int_least64_t
Original:
minimum value of an object of type int_least8_t, int_least16_t, int_least32_t, int_least64_t
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(macro constante)
INTPTR_MIN
valor mínimo de um objeto de intptr_t tipo
Original:
minimum value of an object of type intptr_t
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(macro constante)
INTMAX_MIN
valor mínimo de um objeto de intmax_t tipo
Original:
minimum value of an object of type intmax_t
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(macro constante)
Inteiros assinados: valor máximo
Original:
Signed integers : maximum value
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
INT8_MAX
INT16_MAX
INT32_MAX
INT64_MAX
valor máximo de um objeto do tipo int8_t, int16_t, int32_t, int64_t
Original:
maximum value of an object of type int8_t, int16_t, int32_t, int64_t
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(macro constante)
INT_FAST8_MAX
INT_FAST16_MAX
INT_FAST32_MAX
INT_FAST64_MAX
valor máximo de um objeto do tipo int_fast8_t, int_fast16_t, int_fast32_t, int_fast64_t
Original:
maximum value of an object of type int_fast8_t, int_fast16_t, int_fast32_t, int_fast64_t
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(macro constante)
INT_LEAST8_MAX
INT_LEAST16_MAX
INT_LEAST32_MAX
INT_LEAST64_MAX
valor máximo de um objeto do tipo int_least8_t, int_least16_t, int_least32_t, int_least64_t
Original:
maximum value of an object of type int_least8_t, int_least16_t, int_least32_t, int_least64_t
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(macro constante)
INTPTR_MAX
valor máximo de um objeto de intptr_t tipo
Original:
maximum value of an object of type intptr_t
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(macro constante)
INTMAX_MAX
valor máximo de um objeto de intmax_t tipo
Original:
maximum value of an object of type intmax_t
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(macro constante)
Inteiros sem sinal: valor máximo
Original:
Unsigned integers : maximum value
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
UINT8_MAX
UINT16_MAX
UINT32_MAX
UINT64_MAX
valor máximo de um objeto do tipo uint8_t, uint16_t, uint32_t, uint64_t
Original:
maximum value of an object of type uint8_t, uint16_t, uint32_t, uint64_t
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(macro constante)
UINT_FAST8_MAX
UINT_FAST16_MAX
UINT_FAST32_MAX
UINT_FAST64_MAX
valor máximo de um objeto do tipo uint_fast8_t, uint_fast16_t, uint_fast32_t, uint_fast64_t
Original:
maximum value of an object of type uint_fast8_t, uint_fast16_t, uint_fast32_t, uint_fast64_t
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(macro constante)
UINT_LEAST8_MAX
UINT_LEAST16_MAX
UINT_LEAST32_MAX
UINT_LEAST64_MAX
valor máximo de um objeto do tipo uint_least8_t, uint_least16_t, uint_least32_t, uint_least64_t
Original:
maximum value of an object of type uint_least8_t, uint_least16_t, uint_least32_t, uint_least64_t
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(macro constante)
UINTPTR_MAX
valor máximo de um objeto de uintptr_t tipo
Original:
maximum value of an object of type uintptr_t
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(macro constante)
UINTMAX_MAX
valor máximo de um objeto de uintmax_t tipo
Original:
maximum value of an object of type uintmax_t
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(macro constante)

Macro constantes formato