gpt4 book ai didi

python - 简单函数是线程安全的吗

转载 作者:行者123 更新时间:2023-11-30 23:35:12 25 4
gpt4 key购买 nike

如果我有这种类型的程序级功能

def returnInt(s):
return int(float(s))

它最终被两个单独的线程同时调用,它是“线程安全的”还是我需要在两个线程类中添加为函数例如

class StepperControl(threading.Thread):
....

def returnInt(self,s):
return int(float(self.s))

....

class BounceControl(threading.Thread):
....

def returnInt(self,s):
return int(float(self.s))

....

西蒙

最佳答案

事实上,它是线程安全的,因为它不会访问或尝试更改其自身之外的任何内容。

关于python - 简单函数是线程安全的吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17511372/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com