vote up 1 vote down star

What is a variable?

This question is important for philosophical reasons.

flag

19% accept rate

3 Answers

vote up 3 vote down

Osborn's Law: "Osborn's Law: Variables won't; constants aren't." :)

Wikipedia has entries for both programming variables and mathematical variables

Variables in most programming languages are mutable - they are buckets that can hold a piece of information with a symbolic name for a period of time.

In functional languages, such as XQuery or XSLT, they cannot be changed once assigned. The same is true of final variables in Java, or const variables in most programming languages.

link|flag
vote up 0 vote down

In C#, you'd declare the What variable as:

object What;

Your declaration seems to be from some kind of English-like programming language. Does the ? indicate nullability?

</lameAttemptAtHumour>

link|flag
Maybe some variant of LOLCODE? I HAS A VAR, CAN HAS STDIO? :P – Thorarin Jul 16 at 12:28
vote up 5 vote down

Wikipedia defines it as:

a symbolic name associated with a value and whose associated value may be changed

I would say this is a very solid generic definition for a variable. If you want to expand it slightly, you could add that the value is represented by a block of system memory, but this reduces the generalness somewhat.

I'm not sure you're going to get any deeper a definition, if you were hoping for that...

link|flag
2  
That would suggest that a "readonly variable" doesn't make sense... which may be philosophically true, but isn't as practical as a definition which allows it. – Jon Skeet Jul 16 at 12:24
@Jon: That's a good point. I would still argue that a "readonly variable" is fit by this definition, however; perhaps a more accurate name would be an "assign-once" variable. In this sense, it may still be changed, though only once. – Noldorin Jul 16 at 12:26
Who is your daddy? – quosoo Jul 16 at 12:26
I think that the first half of the definition alone is best: "a symbolic name associated with a value". Whether or not the value is mutable really doesn't matter (especially when you consider that pure functional languages adopt a more algebraic interpretation of "variables"). – Andrew Hare Jul 16 at 12:29
1  
@Noldorin: Do you mean a C# constant? If so I really think of those as literals since the compiler replaces all instances of constants with their literal values. If you are talking about C++ constants then I see "constant" as a qualifier of "variable" (as in "constant variable") since C++ considers variables to be mutable (consider that functional languages often use the term "mutable variable" which makes sense considering that most functional languages considers variables to be immutable). – Andrew Hare Jul 16 at 12:40
show 6 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.