科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道应用软件C和C++里面的lvalue 和 rvalue的释义

C和C++里面的lvalue 和 rvalue的释义

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

在看GCC的文档的时候,看到一个词lvalue,查了金山词霸其释义为lvalue [计] 左值。lvalue中的l其实指表示该值的存储地址属性,而另外一个相对的词rvalue值中的r指的是read的属性,和左右根本没有任何关系。

作者:nathanxu 来源:赛迪网IT博客 2007年9月14日

关键字: C C++ lvalue rvalue 释义

  • 评论
  • 分享微博
  • 分享邮件

在本页阅读全文(共19页)

【引自Nathan的技术空间的博客】在看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的属性,和左右根本没有任何关系。金山词霸的解释真是狗屎啊!

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章