Skip to content

Latest commit

 

History

History
191 lines (122 loc) · 10.5 KB

pointer-related-operators.md

File metadata and controls

191 lines (122 loc) · 10.5 KB
title description ms.date author f1_keywords helpviewer_keywords
Pointer related operators - access memory and dereference memory locations
Learn about C# operators that you can use when working with pointers. You use these operators to access memory, index memory locations and dereference the storage at a memory location
11/28/2022
pkulikov
->_CSharpKeyword
pointer related operators [C#]
address-of operator [C#]
& operator [C#]
pointer indirection operator [C#]
dereference operator [C#]
* operator [C#]
pointer member access operator [C#]
-> operator [C#]
pointer element access [C#]
[] operator [C#]
pointer arithmetic [C#]
pointer increment [C#]
pointer decrement [C#]
pointer comparison [C#]

Pointer related operators - take the address of variables, dereference storage locations, and access memory locations

The pointer operators enable you to take the address of a variable (&), dereference a pointer (*), compare pointer values, and add or subtract pointers and integers.

You use the following operators to work with pointers:

For information about pointer types, see Pointer types.

Note

Any operation with pointers requires an unsafe context. The code that contains unsafe blocks must be compiled with the AllowUnsafeBlocks compiler option.

Address-of operator &

The unary & operator returns the address of its operand:

[!code-csharpaddress of local]

The operand of the & operator must be a fixed variable. Fixed variables are variables that reside in storage locations that are unaffected by operation of the garbage collector. In the preceding example, the local variable number is a fixed variable, because it resides on the stack. Variables that reside in storage locations that can be affected by the garbage collector (for example, relocated) are called movable variables. Object fields and array elements are examples of movable variables. You can get the address of a movable variable if you "fix", or "pin", it with a fixed statement. The obtained address is valid only inside the block of a fixed statement. The following example shows how to use a fixed statement and the & operator:

[!code-csharpaddress of fixed]

You can't get the address of a constant or a value.

For more information about fixed and movable variables, see the Fixed and moveable variables section of the C# language specification.

The binary & operator computes the logical AND of its Boolean operands or the bitwise logical AND of its integral operands.

Pointer indirection operator *

The unary pointer indirection operator * obtains the variable to which its operand points. It's also known as the dereference operator. The operand of the * operator must be of a pointer type.

[!code-csharppointer indirection]

You can't apply the * operator to an expression of type void*.

The binary * operator computes the product of its numeric operands.

Pointer member access operator ->

The -> operator combines pointer indirection and member access. That is, if x is a pointer of type T* and y is an accessible member of type T, an expression of the form

x->y

is equivalent to

(*x).y

The following example demonstrates the usage of the -> operator:

[!code-csharppointer member access]

You can't apply the -> operator to an expression of type void*.

Pointer element access operator []

For an expression p of a pointer type, a pointer element access of the form p[n] is evaluated as *(p + n), where n must be of a type implicitly convertible to int, uint, long, or ulong. For information about the behavior of the + operator with pointers, see the Addition or subtraction of an integral value to or from a pointer section.

The following example demonstrates how to access array elements with a pointer and the [] operator:

[!code-csharppointer element access]

In the preceding example, a stackalloc expression allocates a block of memory on the stack.

Note

The pointer element access operator doesn't check for out-of-bounds errors.

You can't use [] for pointer element access with an expression of type void*.

You can also use the [] operator for array element or indexer access.

Pointer arithmetic operators

You can perform the following arithmetic operations with pointers:

  • Add or subtract an integral value to or from a pointer
  • Subtract two pointers
  • Increment or decrement a pointer

You can't perform those operations with pointers of type void*.

For information about supported arithmetic operations with numeric types, see Arithmetic operators.

Addition or subtraction of an integral value to or from a pointer

For a pointer p of type T* and an expression n of a type implicitly convertible to int, uint, long, or ulong, addition and subtraction are defined as follows:

  • Both p + n and n + p expressions produce a pointer of type T* that results from adding n * sizeof(T) to the address given by p.
  • The p - n expression produces a pointer of type T* that results from subtracting n * sizeof(T) from the address given by p.

The sizeof operator obtains the size of a type in bytes.

The following example demonstrates the usage of the + operator with a pointer:

[!code-csharppointer addition]

Pointer subtraction

For two pointers p1 and p2 of type T*, the expression p1 - p2 produces the difference between the addresses given by p1 and p2 divided by sizeof(T). The type of the result is long. That is, p1 - p2 is computed as ((long)(p1) - (long)(p2)) / sizeof(T).

The following example demonstrates the pointer subtraction:

[!code-csharppointer subtraction]

Pointer increment and decrement

The ++ increment operator adds 1 to its pointer operand. The -- decrement operator subtracts 1 from its pointer operand.

Both operators are supported in two forms: postfix (p++ and p--) and prefix (++p and --p). The result of p++ and p-- is the value of p before the operation. The result of ++p and --p is the value of p after the operation.

The following example demonstrates the behavior of both postfix and prefix increment operators:

[!code-csharppointer increment]

Pointer comparison operators

You can use the ==, !=, <, >, <=, and >= operators to compare operands of any pointer type, including void*. Those operators compare the addresses given by the two operands as if they're unsigned integers.

For information about the behavior of those operators for operands of other types, see the Equality operators and Comparison operators articles.

Operator precedence

The following list orders pointer related operators starting from the highest precedence to the lowest:

  • Postfix increment x++ and decrement x-- operators and the -> and [] operators
  • Prefix increment ++x and decrement --x operators and the & and * operators
  • Additive + and - operators
  • Comparison <, >, <=, and >= operators
  • Equality == and != operators

Use parentheses, (), to change the order of evaluation imposed by operator precedence.

For the complete list of C# operators ordered by precedence level, see the Operator precedence section of the C# operators article.

Operator overloadability

A user-defined type can't overload the pointer related operators &, *, ->, and [].

C# language specification

For more information, see the following sections of the C# language specification:

See also