當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。