标签:tac 数据结构 src rom 文件创建 变量 for 请求 总结
# -*- coding=utf-8 -*- import threading import time from werkzeug.local import LocalStack my_stack = LocalStack() my_stack.push(1) print(‘in main thread after push, value is:‘ + str(my_stack.top)) def worker(): # 新线程 print(‘in new thread before push, value is:‘ + str(my_stack.top)) my_stack.push(2) print(‘in new thread after push, value is:‘ + str(my_stack.top)) new_t = threading.Thread(target=worker, name=‘qiyue_thread‘) new_t.start() time.sleep(1)
30.3 flask为什么需要栈结构
需要栈结构,将两个上下文推到栈中去
标签:tac 数据结构 src rom 文件创建 变量 for 请求 总结
原文地址:https://www.cnblogs.com/wangmingtao/p/9372611.html