Computer Programming Operator
Jump to navigation
Jump to search
A Computer Programming Operator is a Programming Languages that ...
- AKA: Operator (Computer Programming).
- See: Scope Resolution Operator, Programming Languages, Syntax (Programming Languages), Semantics_(Computer Science), Assignment (Computer Science), Field (Computer Science).
References
2019
- (Wikipedia, 2019) ⇒ https://en.wikipedia.org/wiki/Operator_(computer_programming) Retrieved:2019-4-25.
- Programming languages typically support a set of operators: constructs which behave generally like functions, but which differ syntactically or semantically from usual functions. Common simple examples include arithmetic (addition with
+
), comparison (with>
), and logical operations (such asAND
or&&
). More involved examples include assignment (usually=
or:=
), field access in a record or object (usually.
), and the scope resolution operator (often::
). Languages usually define a set of built-in operators, and in some cases allow user-defined operators.
- Programming languages typically support a set of operators: constructs which behave generally like functions, but which differ syntactically or semantically from usual functions. Common simple examples include arithmetic (addition with