self._target(*self._args, **self._kwargs)
时间: 2023-09-29 14:10:28 浏览: 230
编辑框限制输入特定文本例程.e.rar
This line of code calls the function or method specified as the target of a threading.Thread object.
`self._args` and `self._kwargs` are arguments and keyword arguments passed to the target function or method. The `*` and `**` operators are used to unpack these arguments and pass them to the function or method as separate positional and keyword arguments, respectively.
Essentially, this line of code executes the target function or method with the specified arguments and keyword arguments in a separate thread.
阅读全文