Computer Programming Operator: Difference between revisions
Jump to navigation
Jump to search
(Created page with " A Computer Programming Operator is a Programming Languages that ... * <B>AKA:</B> Operator (Computer Programming). * <B>See:</B> Scope Resolution Operator,...") |
(ContinuousReplacement) Tag: continuous replacement |
||
Line 5: | Line 5: | ||
---- | ---- | ||
---- | ---- | ||
==References== | |||
== References == | |||
=== 2019 === | === 2019 === | ||
* (Wikipedia, 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 [[Syntax (programming languages)|syntactically]] or [[Semantics_(computer science)|semantically]] from usual functions. Common simple examples include arithmetic (addition with <code>+</code>), comparison (with <code>></code>), and logical operations (such as <code>AND</code> or <code>&&</code>). More involved examples include [[Assignment (computer science)|assignment]] (usually <code>=</code> or <code>:=</code>), [[Field (computer science)|field]] access in a record or object (usually <code>.</code>), and the [[scope resolution operator]] (often <code>::</code>). 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 [[Syntax (programming languages)|syntactically]] or [[Semantics_(computer science)|semantically]] from usual functions. Common simple examples include arithmetic (addition with <code>+</code>), comparison (with <code>></code>), and logical operations (such as <code>AND</code> or <code>&&</code>). More involved examples include [[Assignment (computer science)|assignment]] (usually <code>=</code> or <code>:=</code>), [[Field (computer science)|field]] access in a record or object (usually <code>.</code>), and the [[scope resolution operator]] (often <code>::</code>). Languages usually define a set of built-in operators, and in some cases allow user-defined operators. | ||
Revision as of 02:54, 25 April 2019
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