Does the .NET CLR Really Optimize for the Current Processor

前端 未结 7 419
耶瑟儿~
耶瑟儿~ 2020-12-23 10:45

When I read about the performance of JITted languages like C# or Java, authors usually say that they should/could theoretically outperform many native-compiled applications.

相关标签:
7条回答
  • 2020-12-23 11:51

    I know the rules for whether or not to inline functions changes depending on the processor type (x86, x64). And of course the pointer sizes will vary depending on if it runs as 32-bit or 64-bit.

    0 讨论(0)
提交回复
热议问题