Other operators
Other operators
A collection of operators that do not fit into any of the other major categories.
Operator | Operator name | Example | Description |
---|---|---|---|
(...) | function call | f(...) | call the function f(), with zero or more arguments |
, | comma operator | a, b | evaluate expression a, disregard its return value and complete any side-effects, then evaluate expression b, returning the type and the result of this evaluation |
(type)登录查看完整内容
|