分类: C/C++
2008-11-08 22:02:02
在看GCC的文档的时候,看到一个词lvalue,查了金山词霸其释义为lvalue [计] 左值。因为的确在介绍编译原理的课程中听过这个词,大致知道其意思就没有多想。但是看完GCC文档的这个篇幅,
都无法明白全篇在说什么。问题还是出在了lvalue这个词的“左值”是什么意思的理解上了。再找M-W字典,却告知没有这个词。于是google了一把,的确很多地方都称其为左值,仍然不得要领。
最后在一个百科网站About Site上找到该词的准确释义,摘贴如下:
Definition:
C and C++ have the notion of lvalues and rvalues
associated with variables and constants. The rvalue is the data value
of the variable, that is, what information it
contains. The "r" in
rvalue can be thought of as "read" value. A variable also has an
associated lvalue. The "l" in lvalue can be though of as location,
meaning that a variable
has a location that data or information can be
put into. This is contrasted (对应) with a constant. A constant has some data
value, that is an rvalue. But, it cannot be written
to. It does not have an lvalue.
Another view of these terms is that objects with an rvalue, namely a
variable or a constant can appear on the right hand side of a
statement. They have some data value
that can be manipulated(巧妙的处理) Only
objects with an lvalue, such as variable, can appear on the left hand
side of a statement. An object must be addressable to store
a value.
Here are two examples.
int x;
x = 5; // This is fine, 5 is an rvalue, x can be an lvalue.
5 = x; // This is illegal. A literal constant such as 5 is not
// addressable. It cannot be a lvalue.
很明白,lvalue中的l其实指的表示该值的存储地址属性,而另外一个相对的词rvalue值中的r指的是read的属性,和左右根本没有任何关系。