Compartilhar via


Operador <<= (Visual Basic)

Performs an arithmetic left shift on the value of a variable or property and assigns the result back to the variable or property.

variableorproperty <<= amount

Parts

  • variableorproperty
    Required. Variable or property of an integral type (SByte, Byte, Short, UShort, Integer, UInteger, Long, or ULong).

  • amount
    Required. Numeric expression of a data type that widens to Integer.

Comentários

The element on the left side of the <<= operator can be a simple scalar variable, a property, or an element of an array. The variable or property cannot be ReadOnly (Visual Basic). The <<= operator assigns the value on its right to the variable or property on its left.

Arithmetic shifts are not circular, which means the bits shifted off one end of the result are not reintroduced at the other end. In an arithmetic left shift, the bits shifted beyond the range of the result data type are discarded, and the bit positions vacated on the right are set to zero.

Overloading

The Operador << (Visual Basic) can be overloaded, which means that a class or structure can redefine its behavior when an operand has the type of that class or structure. Overloading the << operator affects the behavior of the <<= operator. If your code uses <<= on a class or structure that overloads <<, be sure you understand its redefined behavior. For more information, see Procedimentos de operador (Visual Basic).

Exemplo

The following example uses the <<= operator to shift the bit pattern of an Integer variable left by the specified amount and assign the result to the variable.

Dim var As Integer = 10
Dim shift As Integer = 3
var <<= shift
' The value of var is now 80.

Consulte também

Referência

Operador << (Visual Basic)

Operadores de atribuição (Visual Basic)

Operadores Bit Shift (Visual Basic)

Precedência de operadores no Visual Basic

Operadores listados por Funcionalidade (Visual Basic)

Outros recursos

Instruções no Visual Basic