当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > C#陷阱int i = 10; i += i++; i =

ASP.NET
实现HtmlButton客户端控制网页提交
开发手记(三)
开发手记(二)
开发手记(一)
.net中PictureBox中图片的拖动
使用ADO.NET轻松操纵数据库
vb.net 中实现画图
C#中使用DirectX编程
LZW算法的 C#实现
在.NET上如何根据字符串动态创建控件
asp.net生成HTML
ASP.NET 2.0页面框架的几处变化
解读C#中的规则表达式
使DATAGRID中的日期按长日期格式显示
application和cache实现缓存的差异
.Net 下区别使用 ByRef/ByVal 的重要性
拷贝整个目录下所有子目录及文件的方法
Asp.net 页面导航的几种方法与比较
VB6 中 善用 ByRef 提升速度
如何使用.net操作ddeml?

ASP.NET 中的 C#陷阱int i = 10; i += i++; i =


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 28 ::
收藏到网摘: n/a


参加某公司的笔试时的一道题目:int i = 10; i += i++; i = ?。当时我写了21。但当我在C#中写了如下代码测试时
static void Main(string[] args) { int i = 10; i += i++; Console.WriteLine(i); Console.Read(); }
编译器告诉我,结果是20。为什么!我错了吗?我开始纳闷了。我赶紧用VC(Visual Studio.net2003)重新编了一段测试代码,如下:
int _tmain(){ int i = 10; i += i++; Console::WriteLine(i); Console::Read(); return 0;}
这次,结果是21。奇怪了啊,为什么同样是i += i++,其结果是不一样的呢?
最终结论:语言差异
C# does have explicit rules around this behavior. (left to right)C++ does not (problem of the C++ language, not the compiler)