Identifier

esse quam videri
Revision as of 20:44, 8 August 2019 by Pedro (talk | contribs)
Jump to: navigation, search

Definition

The identifier is a user-created name that is used to label program elements. The identifier can be thought of as the variable's "name" that you'll call when you want to access it.

Relevance

If variables wore name tags, the name tag itself is called the identifier.

Example

string firstName = "John"; // The identifier of the string is firstName
string lastName = "Doe"; // The identifier of the string is lastName


See also

Notes


External Links