Internet
Fact-checked

At EasyTechJunkie, we're committed to delivering accurate, trustworthy information. Our expert-authored content is rigorously fact-checked and sourced from credible authorities. Discover how we uphold the highest standards in providing you with reliable knowledge.

Learn more...

What is an Assignment Statement?

Jessica Susan Reuter
Jessica Susan Reuter

An assignment statement is a computer language construct that binds a particular value to a computer variable. It is a ubiquitous construct in both programming and scripting languages, allowing data to be temporarily saved inside a program for future use. This is an important part of computer programming because if data could not be temporarily saved in some form, it would be impossible for a program to do anything useful.

Any type of value can be bound to a variable using an assignment statement, be it a complex object or a simple type like an integer or string of characters. The types of values which can be bound depend on the computer language being used, since some languages contain types that others lack. Regardless of the data value being assigned, an assignment statement always works the same way, associating data with a specific variable in machine code. Exactly how this happens can depend on the computer language being used, but programmers are never required to handle this process in source code.

Woman doing a handstand with a computer
Woman doing a handstand with a computer

Most assignment statements are written with the simple variable = value syntax. This is the most common syntax for assignments, although certain languages allow different syntaxes. In the Postscript language, for example, a value is assigned to a variable using the syntax /variable value def. There are a few other languages which also have alternative syntaxes, but assigning values to variables using an equals sign is nearly universal.

Writing an assignment statement does not always guarantee that a value will be properly bound to a variable. There are some computer languages in which programmers can employ specific keywords to prevent reassignment of a variable once it has been bound to a value. The usage and names of these keywords differ between languages, though they serve the same function. On occasion, errors in memory can also cause assignment statements to fail. These don't happen often if a program is carefully written, but they are still possible if the program unexpectedly runs out of memory or encounters another serious problem.

In some computer languages, an equals sign may be used for other things instead of an assignment statement. The most common alternate usage of an equals sign is to redefine its action, which could potentially create drastic differences in the mechanisms of an ordinary assignment statement. It is possible to redefine other symbols to restore assignment statement capabilities, but this is often a very complex undertaking. These reassignments are rarely needed in programming, and should usually be avoided unless absolutely necessary.

Discuss this Article

Post your comments
Login:
Forgot password?
Register:
    • Woman doing a handstand with a computer
      Woman doing a handstand with a computer