- 论坛徽章:
- 5
|
回复 96# pmerofc
定义嘛…………(来自维基百科)
In computer programming, a variable is a storage location and an associated symbolic name which contains some known or unknown quantity or information, a value. The variable name is the usual way to reference the stored value; this separation of name and content allows the name to be used independently of the exact information it represents.[dubious – discuss] A variable name in computer source code is an identifier that can be bound to a value during run time, and the value may change during the course of program execution.
从这个定义看出来,identifier是variable的组成部分之一。而identifier是expression,即variable的组成部分之一可以作为expression。即variable可以作为expression使用。 |
|