python vm每次都会编译方法吗?
如果我的模块中的几个地方都调用了一个函数,那么虚拟机是否仅在第一次执行该函数时将其编译为本机代码,而不是在其他调用中使用兑现的代码? (如 .NET jit 编译器)
If I have a function that is called in few places in my module, does the virtual machine compiles it to native code only the first time the function is executed and than use the cashed code on the other calls? (like .NET jit compiler)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 CPython(标准 Python 实现)中,第一次导入 Python 模块时,它会被编译为字节码并存储在 .pyc 文件中。从那时起,.pyc 文件将在需要时由 VM 读取和解释。一旦 .pyc 被读入内存,字节码就位于内存中,并在调用函数时由 VM 进行解释。
CPython 永远不会将 Python 代码编译为本机可执行代码。
In CPython (the standard Python implementation) the first time a Python module is imported, it's compiled to bytecode and stored in a .pyc file. From then on, the .pyc file is read and interpreted by the VM when needed. Once the .pyc is read into memory, the bytecode is in memory, and interpreted by the VM when the function is called.
CPython never compiles Python code to native executable code.