1 / 8
文档名称:

英文论文赏析.doc

格式:doc   大小:41KB   页数:8页
下载后只包含 1 个 DOC 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

分享

预览

英文论文赏析.doc

上传人:taoapp 2022/6/20 文件大小:41 KB

下载得到文件列表

英文论文赏析.doc

相关文档

文档介绍

文档介绍:Advantages of Managed Code
前言:
学术期刊按主管单位的不同,可以分为省级、国家级、科技核心期刊(统计源期刊)、中文核心期刊(北大中文核心)、CSSCI、CSCD、双核心期刊等。省级:主管单位是省一级机构主管的has been compiled
once, the resultant native executable is stored until the application exits, so that it does not need to be recompiled the next time that portion of code is run. Microsoft argues that this process is more efficient than compiling the entire application code at the start, because of the likelihood that large portions of any application code will not actually be executed in any given run. Using the JIT compiler, such code will never be compiled.
This explains why we can expect that execution of managed IL code will be almost as fast as executing
native machine code. What it doesn’t explain is why Microsoft expects that we will get a performance
improvement. The reason given for this is that, since the final stage of compilation takes place at runtime, the JIT compiler will know exactly what processor type the program will run on. This means that it can optimize the final executable code to take advantage of any features or particular machine code instructions offered by that particular processor.
Traditional compilers will optimize the code, but they can only perform optimizations that are independent of the particular processor that the code will run on. This is because traditional compilers compile to native executable before the softwar