visual c++ - C++/CLI - What does the postfix operator '*' do? -


i new c++/cli , stumbled upon strange notation. these syntaxes equivalent?

(ci*)->

and

(*ci)->

usually binary operator * used multiplication: a * b. because operators can defined user, can mean pretty anything, uses different meaning of original operator discouraged. unary postfix version of operator *, first time have seen or heard it, , knowledge not defined built-in types.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -