Compartilhar via


Tipo de dados Short (Visual Basic)

Holds signed 16-bit (2-byte) integers that range in value from -32,768 through 32,767.

Comentários

Use the Short data type to contain integer values that do not require the full data width of Integer. In some cases, the common language runtime can pack your Short variables closely together and save memory consumption.

The default value of Short is 0.

Programming Tips

  • Alargamento. The Short tipo de dados widens to Integer, Long, Decimal, Single, or Double. This means you can convert Short to any one of these types without encountering a System.OverflowException error.

  • Tipo Caracteres. Acrescentando o caractere de tipo literal S para um literal de força para o Short tipo de dados. Shortnão tem nenhum caractere de tipo de identificador .

  • Framework Type. O tipo correspondente na.NET Framework é o System.Int16 estrutura.

Consulte também

Referência

Resumo de tipo de dados (Visual Basic)

System.Int16

Funções de conversão de tipo (Visual Basic)

Resumo de conversão (Visual Basic)

Tipo de Dados Inteiro (Visual Basic)

Tipo de dados Long (Visual Basic)

Conceitos

Uso eficiente de tipos de dados (Visual Basic)