线程装饰器[Python]

编程入门 行业动态 更新时间:2024-10-28 22:27:35
本文介绍了线程装饰器[Python]的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在尝试使用python套接字和线程库创建一个简单的程序。我想使用一个装饰器自动执行以下步骤:

t = threading.Thread(target=function, args=(arg1, arg2)) t.start()

程序是使用OOP构建的,所以我在Main中定义了一个子类来包含所有的修饰符(我在本文中读到了这个方法:medium/@vadimpushtaev/decorator-inside-python-class-1e74d23107f6)。因此我的情况是这样的:

class Server(object): class Decorators(object): @classmethod def threaded_decorator(cls, function): def inner_function(): function_thread = threading.Thread(target=function) function_thread.start() return inner_function def __init__(self, other_arguments): # other code pass @Decorators.threaded_decorator def function_to_be_threaded(self): # other code pass

但当我尝试运行时,收到以下错误:TypeError: function_to_be_threaded() missing one required argument: 'self'。我怀疑当我调用threading.Thread(目标=函数)时,问题出在没有传递整个函数self.unction_to_be_threaded的部分中。因此,如果你知道如何解决这个问题,你能告诉我吗?另外,您能告诉我是否有一种方法可以实现一个接受参数的修饰符,该参数将作为args=(arguments_of_the_decorator)传递给Thread类?

非常感谢您抽出时间并原谅我的英语,我还在练习

推荐答案

使用*args语法移动参数。换言之,使用*args将所有位置参数收集为一个元组,并将其作为args移动。

import threading import time class Server(object): class Decorators(object): @classmethod def threaded_decorator(cls, function): def inner_function(*args): function_thread = threading.Thread(target=function,args=args) function_thread.start() return inner_function def __init__(self, count,sleep): self.count = count self.sleep = sleep @Decorators.threaded_decorator def function_to_be_threaded(self,id): for xx in range(self.count): time.sleep(self.sleep) print("{} ==> {}".format(id,xx)) >>> Server(6,1).function_to_be_threaded('a') >>> Server(2,3).function_to_be_threaded('b') a ==> 0 a ==> 1 a ==> 2 b ==> 0 a ==> 3 a ==> 4 a ==> 5 b ==> 1

另见How can I pass arguments from one function to another?

更多推荐

线程装饰器[Python]

本文发布于:2023-06-03 13:17:44,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/474747.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:线程   Python

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!