.Net / C# 的速度会随着景深的增加而降低吗?
下面两行代码执行速度有区别吗?我无法通过查看 IL 来判断:
int x = MainObject.Field1;
int x = MainObject.Public.Fields.Field1;
我从 Delphi(本机代码)知道,没有区别。
Is there any execution speed difference between the following two lines of code? I cannot tell from looking at the IL:
int x = MainObject.Field1;
int x = MainObject.Public.Fields.Field1;
I know from Delphi (native code), there is no difference.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通过“.”访问更深入的类结构元素 - 否,但使用它的方法调用 - 是。
Accesing by '.' to deeper class structure elements - NO, but method invocation with it - YES.
没有任何区别。 (假设你的意思是,正如你在标题中所说的,字段)
There is no difference whatsoever. (assuming you mean, as you say in the title, fields)