Difference between revisions of "Symbol (programming)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
Line 1: Line 1:
In [[computer programming]], a '''symbol''' is a primitive [[datatype]] whose [[Instance (computer science)|instances]] have a unique human-readable form.
+
In [[computer programming]], a '''symbol''' is a primitive [[data type]] whose [[Instance (computer science)|instances]] have a unique human-readable form.
  
 
== Description ==
 
== Description ==
Line 11: Line 11:
 
== See also ==
 
== See also ==
  
* [[Datatype]]
+
* [[Data type]]
  
 
== External links ==
 
== External links ==

Revision as of 15:21, 16 September 2016

In computer programming, a symbol is a primitive data type whose instances have a unique human-readable form.

Description

Symbols can be used as identifiers.

In some programming languages, they are called atoms.

In the most trivial implementation, they are essentially named integers (e.g. the enumerated type in C).

See also

External links