码迷,mamicode.com
首页 > 编程语言 > 详细

python 进程

时间:2017-07-08 11:27:12      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:http   images   技术分享   子进程   fork   style   import   创建   sleep   

import os
import time
ret = os.fork() # 创建子线程

if ret ==0: # 子进程中返回值为0,父进程>0
    while True:
        print(......1......)
        time.sleep(1)

else:
    while True:
        print(......2......)
        time.sleep(1)

技术分享

 多fork问题,以下代码会出现4个进程

import os
import time
ret = os.fork()

if ret ==0:
    print(......1......)

else:
    print(......2......)


ret = os.fork()

if ret ==0:
    print(......11......)

else:
    print(......22.....)

技术分享

技术分享

import os
import time
ret = os.fork()

if ret ==0:
    print(......1......)

else:
    print(......2......)


    ret = os.fork()

    if ret ==0:
        print(......11......)

    else:
        print(......22.....)

技术分享

技术分享

 

python 进程

标签:http   images   技术分享   子进程   fork   style   import   创建   sleep   

原文地址:http://www.cnblogs.com/Erick-L/p/7135859.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!