猫史档案馆


进程已结束,退出代码为 -1073741819 (0xC0000005)

用户:fkymfkym查看:0 回复:3 评论:0 创建时间:2021-10-13T21:14:43


进程已结束,退出代码为 -1073741819 (0xC0000005)你们有没有遇到过


回复

上一页1 页 / 共 1下一页
1111101011111010

见过center_image

点赞0


评论


1111101011111010

import random
from PyQt5.QtWidgets import *
import sys
import threading
import time


def messageDialog():
    app = QApplication(sys.argv)
    msg_box = QMessageBox(QMessageBox.Warning, '警告', '文件出现异常')
    msg_box.move(random.randint(0,1920),random.randint(0,1080))
    app.exit(msg_box.exec_())




if __name__ == '__main__':
    messageDialog()






threads = []
while 1:
    t = threading.Thread(target=messageDialog)
    threads.append(t)
    time.sleep(0.01)
    threads[-1].start()

点赞0


评论


PlumStevenPlumSteven

我只见过Process exited after 1.469 seconds with return value 3221225477(bushi

emotion_dogeemotion_dogeemotion_dogeemotion_dogeemotion_dogeemotion_dogeemotion_dogeemotion_doge

center_imagecenter_image

点赞0


评论