Python| os.fork() 方法
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
os 模块中的所有函数在文件名和路径无效或不可访问的情况下,或具有正确类型但操作系统不接受的其他参数的情况下引发OSError 。
Python中的os.fork()方法用于创建子进程。此方法通过调用底层操作系统函数fork()来工作。此方法在子进程中返回 0,在父进程中返回子进程 ID。
注意: os.fork()方法仅在 UNIX 平台上可用。
Syntax: os.fork()
Parameter: No parameter is required
Return Type: This method returns an integer value representing child’s process id in the parent process while 0 in the child process.
代码:使用 os.fork() 方法创建子进程
Python3
# 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 represents
# 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 occurred 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