当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.fork()用法及代码示例


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。

如果文件名和路径无效或无法访问,或者具有正确类型但操作系统不接受的其他参数,则os模块中的所有函数都会引发OSError。

os.fork()Python中的方法用于创建子进程。该方法通过调用基础OS函数fork()来工作。此方法在子进程中返回0,在父进程中返回子进程的ID。


注意: os.fork()该方法仅在UNIX平台上可用。

用法: os.fork()

参数:不需要参数

返回类型:此方法返回一个整数值,表示父进程中子进程的ID,而子进程中返回0。

代码:使用os.fork()方法创建子进程
# Python program to explain os.fork() method  
  
# importing os module  
import os 
  
  
# Create a child process 
# using os.fork() method  
pid = os.fork() 
  
# pid greater than 0 represents 
# the parent process  
if pid > 0 :
    print("I am parent process:") 
    print("Process ID:", os.getpid()) 
    print("Child's process ID:", pid) 
  
# pid equal to 0 represnts 
# the created child process 
else :
    print("\nI am child process:") 
    print("Process ID:", os.getpid()) 
    print("Parent's process ID:", os.getppid()) 
  
  
# If any error occured while 
# using os.fork() method 
# OSError will be raised
输出:
I am Parent process
Process ID:10793
Child's process ID:10794

I am child process
Process ID:10794
Parent's process ID:10793


相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.fork() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。