- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
请观察以下代码(Win10上的python 3.6,PyCharm),函数thread0(self)
作为线程成功启动,但是 thread1(self)
似乎与thread0(self)
不同已设置。 self.thread0
很好,但是self.thread1
不是。 self
在self.thread1
没有thread1
在其类函数中,但它具有 __init__()
中的所有内容。事实上,在 PyCharm 中,参数 self
def thread1(self):
行中甚至没有突出显示。我的理解是像foo(self)
这样的语法会将 foo() 添加为 self
所指向的类的成员.
既然说到这里,我无法解释为什么启动thread0的try-catch block 中的代码也失败了,也许这与线程的具体语法要求有关?
我有一种感觉,嵌套使用self
这样可能不推荐。但在我的实际代码中,我确实需要在新进程中声明线程,而不是 main()
,以便这些线程可以共享该进程的同一个 python 记录器。
import threading
import multiprocessing
from time import sleep
class exe0(multiprocessing.Process):
def __init__(self):
super().__init__()
self.aaa = 111
# working syntax for thread0
t = threading.Thread(
target=self.thread0,
daemon=1,
)
t.start()
try:
# NOT working syntax
t = threading.Thread(
target=thread0,
args=(self,),
daemon=1,
)
t.start()
sleep(1)
except Exception as e:
print(e)
def thread0(self):
print(type(self))
def run(self):
# working syntax for thread1
def thread1(self):
print(type(self))
print(self.aaa)
t = threading.Thread(
target=thread1,
args=(self,),
daemon=1,
)
t.start()
sleep(1)
try:
# NOT working syntax
t = threading.Thread(
target=self.thread1,
daemon=1,
)
t.start()
sleep(1)
except Exception as e:
print(e)
if __name__ == '__main__':
multiprocessing.freeze_support()
e = exe0()
e.daemon = 1
e.start()
sleep(2)
# output:
'''
<class '__main__.exe0'>
name 'thread0' is not defined
<class '__mp_main__.exe0'>
111
'exe0' object has no attribute 'thread1'
'''
最佳答案
你忘了明白 self 只是一个变量名,代表的是另一回事,为了让你的代码正常工作,你只需为你的变量选择另一个名字,看看:
Important edit
您忘记将名为t4
的线程中的方法作为目标
import threading
import multiprocessing
from time import sleep
class exe0(multiprocessing.Process):
def __init__(self):
super().__init__()
self.aaa = 111
t1 = threading.Thread(
target=self.thread0,
daemon=1,
)
t1.start()
try:
t2 = threading.Thread(
target=self.thread0, #here I removed the other parameter
daemon=1,
)
t2.start()
sleep(1)
except Exception as e:
print(e)
def thread0(self):
print(type(self))
def run(self):
def thread1(s): #here you can see the name doesn't matter
print(type(s)) #here you can see the name doesn't matter
print(s.aaa)
t3 = threading.Thread(
target=thread1(self),
daemon=1,
)
t3.start()
sleep(1)
try:
t4 = threading.Thread(
target=thread1(self), #here there is no need of the parameter
daemon=1,
)
t4.start()
sleep(1)
except Exception as e:
print(e)
multiprocessing.freeze_support()
e = exe0()
e.daemon = 1
e.start()
sleep(2)
现在您获得了 6 个输出,例如:
<class 'exe0'>
<class 'exe0'>
<class 'exe0'>
111
<class 'exe0'>
111
关于python - 当在另一个函数(self)中声明函数(self)时,“self”丢失了一些东西,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45113912/
SQLite、Content provider 和 Shared Preference 之间的所有已知区别。 但我想知道什么时候需要根据情况使用 SQLite 或 Content Provider 或
警告:我正在使用一个我无法完全控制的后端,所以我正在努力解决 Backbone 中的一些注意事项,这些注意事项可能在其他地方更好地解决......不幸的是,我别无选择,只能在这里处理它们! 所以,我的
我一整天都在挣扎。我的预输入搜索表达式与远程 json 数据完美配合。但是当我尝试使用相同的 json 数据作为预取数据时,建议为空。点击第一个标志后,我收到预定义消息“无法找到任何内容...”,结果
我正在制作一个模拟 NHL 选秀彩票的程序,其中屏幕右侧应该有一个 JTextField,并且在左侧绘制弹跳的选秀球。我创建了一个名为 Ball 的类,它实现了 Runnable,并在我的主 Draf
这个问题已经有答案了: How can I calculate a time span in Java and format the output? (18 个回答) 已关闭 9 年前。 这是我的代码
我有一个 ASP.NET Web API 应用程序在我的本地 IIS 实例上运行。 Web 应用程序配置有 CORS。我调用的 Web API 方法类似于: [POST("/API/{foo}/{ba
我将用户输入的时间和日期作为: DatePicker dp = (DatePicker) findViewById(R.id.datePicker); TimePicker tp = (TimePic
放宽“邻居”的标准是否足够,或者是否有其他标准行动可以采取? 最佳答案 如果所有相邻解决方案都是 Tabu,则听起来您的 Tabu 列表的大小太长或您的释放策略太严格。一个好的 Tabu 列表长度是
我正在阅读来自 cppreference 的代码示例: #include #include #include #include template void print_queue(T& q)
我快疯了,我试图理解工具提示的行为,但没有成功。 1. 第一个问题是当我尝试通过插件(按钮 1)在点击事件中使用它时 -> 如果您转到 Fiddle,您会在“内容”内看到该函数' 每次点击都会调用该属
我在功能组件中有以下代码: const [ folder, setFolder ] = useState([]); const folderData = useContext(FolderContex
我在使用预签名网址和 AFNetworking 3.0 从 S3 获取图像时遇到问题。我可以使用 NSMutableURLRequest 和 NSURLSession 获取图像,但是当我使用 AFHT
我正在使用 Oracle ojdbc 12 和 Java 8 处理 Oracle UCP 管理器的问题。当 UCP 池启动失败时,我希望关闭它创建的连接。 当池初始化期间遇到 ORA-02391:超过
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve
引用这个plunker: https://plnkr.co/edit/GWsbdDWVvBYNMqyxzlLY?p=preview 我在 styles.css 文件和 src/app.ts 文件中指定
为什么我的条形这么细?我尝试将宽度设置为 1,它们变得非常厚。我不知道还能尝试什么。默认厚度为 0.8,这是应该的样子吗? import matplotlib.pyplot as plt import
当我编写时,查询按预期执行: SELECT id, day2.count - day1.count AS diff FROM day1 NATURAL JOIN day2; 但我真正想要的是右连接。当
我有以下时间数据: 0 08/01/16 13:07:46,335437 1 18/02/16 08:40:40,565575 2 14/01/16 22:2
一些背景知识 -我的 NodeJS 服务器在端口 3001 上运行,我的 React 应用程序在端口 3000 上运行。我在 React 应用程序 package.json 中设置了一个代理来代理对端
我面临着一个愚蠢的问题。我试图在我的 Angular 应用程序中延迟加载我的图像,我已经尝试过这个2: 但是他们都设置了 src attr 而不是 data-src,我在这里遗漏了什么吗?保留 d
我是一名优秀的程序员,十分优秀!