Operators

Brief desription of Operators such as ->, ., ::

Updated about 3 years ago Edit Page Revisions

Operators

. (dot)

Accesses members of struct variables or class objects.

:: (double colons)

Used for access static methods or members.

-> (arrow)

Used with pointers to access the class or struct variables.

& (reference)

Used to pass data by reference into functions

* (pointer)

Used to point to a reference within memory

More

Will be further updated in due time