- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在 python 的多线程方面遇到了一些问题:生成一个线程,它会得到一些参数,如线程名称、计数器等。在线程的“运行”部分,它正在调用一些子函数(并且还有一些子函数达到一定深度)但是,自变量(类)似乎不存在于子函数中:指的是 self.name显示一些错误(NameError: global name 'self' is not defined).有没有什么方法可以在没有 (!!) 参数化所有内容的情况下获取这些子函数中完整结构的内容(这将在深度 4 时变得该死的长......)。希望这个简短的例子能更好地解释它,在 sub1 中,第二行打印尝试访问 self.counter
#!/usr/bin/python
import threading
import time
globalVar = 1;
def sub1 ( name ):
global globalVar ;
print str(globalVar) + " in der 1. subfunktion von " +str(name)
print "teste self" + str(self.counter) + " - " + globalVar + " " +str(name) ;
globalVar += 1 ;
time.sleep(1);
sub2 (name) ;
return None ;
class myThread (threading.Thread):
def __init__(self, threadID, name, counter):
threading.Thread.__init__(self)
self.threadID = threadID
self.name = name
self.counter = counter
def run(self):
print "Starting " + self.name + " mit zaehler " + str(self.counter)
sub1 (self.name);
threadLock = threading.Lock()
threads = [] ;
# Create new threads
count =0;
while count < 10 :
count += 1;
threadX = myThread(count, "Thread-" + str(count), count)
threadX.start()
threads.append(threadX)
for t in threads:
t.join()
print "Exiting Main Thread"
谢谢你的帮助
最佳答案
为什么你不直接通过 self
而不是 name
?
#!/usr/bin/python
import threading
import time
globalVar = 1;
def sub1 ( self ):
global globalVar ;
print str(globalVar) + " in der 1. subfunktion von " +str(self.name)
print "teste self" + str(self.counter) + " - " + str(globalVar) + " " +str(self.name) ;
globalVar += 1 ;
time.sleep(1);
sub2 (self.name) ;
return None ;
class myThread (threading.Thread):
def __init__(self, threadID, name, counter):
threading.Thread.__init__(self)
self.threadID = threadID
self.name = name
self.counter = counter
def run(self):
print "Starting " + self.name + " mit zaehler " + str(self.counter)
sub1 (self);
threadLock = threading.Lock()
threads = [] ;
# Create new threads
count =0;
while count < 10 :
count += 1;
threadX = myThread(count, "Thread-" + str(count), count)
threadX.start()
threads.append(threadX)
for t in threads:
t.join()
print "Exiting Main Thread"
由于 int
无法与 string
连接, 我替换了 globalVar
与 str(globalVar)
在sub1
方法。
工作如下:
>>> ================================ RESTART ================================
>>>
Starting Thread-1 mit zaehler 1
1 in der 1. subfunktion von Thread-1
teste self1 - 1 Thread-1
Starting Thread-2 mit zaehler 2
2 in der 1. subfunktion von Thread-2
teste self2 - 2 Thread-2Starting Thread-3 mit zaehler 3
Starting Thread-5 mit zaehler 5
Starting Thread-6 mit zaehler 6Starting Thread-7 mit zaehler 7Starting Thread-4 mit zaehler 4Starting Thread-8 mit zaehler 8Starting Thread-9 mit zaehler 9
3 in der 1. subfunktion von Thread-3
3 in der 1. subfunktion von Thread-5Starting Thread-10 mit zaehler 10
3 in der 1. subfunktion von Thread-63 in der 1. subfunktion von Thread-73 in der 1. subfunktion von Thread-9
teste self3 - 3 Thread-3
3 in der 1. subfunktion von Thread-43 in der 1. subfunktion von Thread-8
teste self5 - 3 Thread-5
teste self7 - 3 Thread-7
3 in der 1. subfunktion von Thread-10teste self6 - 3 Thread-6teste self9 - 3 Thread-9
teste self4 - 4 Thread-4
teste self8 - 5 Thread-8
teste self10 - 6 Thread-10
//+ A bunch of Sub2 is not defined errors ...
关于 python : multithreading : self as global variable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36738087/
让我们写一个简单的类在我的脑海中解释: class SomeClass { var happyToUsed = 10 } 并创建一个对象 let someObject = SomeClass(
采用 self 的方法与采用 &self 甚至 &mut self 的方法有什么区别? 例如 impl SomeStruct { fn example1(self) { } fn ex
请观察以下代码(Win10上的python 3.6,PyCharm),函数thread0(self)作为线程成功启动,但是 thread1(self)似乎与thread0(self)不同已设置。 se
backbone.js 开始于: //Establish the root object, `window` (`self`) in the browser, or `global` on the s
做的事: self = self.init; return self; 在 Objective-C 中具有相同的效果: self.init() 快速? 例如,在这种情况下: else if([form
我查看了关于堆栈溢出的一些关于使用[weak self]和[unowned self]的问题的评论。我需要确保我理解正确。 我正在使用最新的 Xcode - Xcode 13.4,最新的 macOS
我面临在以下模型类代码中的 self.init 调用或分配给 self 之前使用 self 的错误tableview单元格项目,它发生在我尝试获取表格单元格项目的文档ID之后。 应该做什么?请推荐。
晚上好。 我对在 Swift 中转义(异步)闭包有疑问,我想知道哪种方法是解决它的最佳方法。 有一个示例函数。 func exampleFunction() { functionWithEsca
我需要在内心深处保持坚强的自我。 我知道声明[weak self]就够了外封闭仅一次。 但是guard let self = self else { return }呢? ,是否也足以为外部闭包声明一
代码 use std::{ fs::self, io::self, }; fn rmdir(path: impl AsRef) -> io::Result { fs::remo
我检查了共享相同主题的问题,但没有一个解决我遇到的这种奇怪行为: 说我有一个简单的老学校struct : struct Person { var name: String var age:
我应该解释为什么我的问题不是重复的:TypeError: can only concatenate list (not “str”) to list ...所以它不是重复的,因为该帖子处理代码中出现的
我有一个 trait,它接受一个类型参数,我想说实现这个 trait 的对象也会符合这个类型参数(使用泛型,为了 Java 的兼容性) 以下代码: trait HandleOwner[SELF
这个问题在这里已经有了答案: Why would a JavaScript variable start with a dollar sign? [duplicate] (16 个答案) 关闭 8
我总是找到一些类似的代码newPromise.promiseDispatch.apply(newPromise, message),我不明白为什么不使用newPromise.promiseDispat
我看到类似的模式 def __init__(self, x, y, z): ... self.x = x self.y = y self.z = z ... 非
mysql查询示例: SELECT a1.* FROM agreement a1 LEFT JOIN agreement a2 on a1.agreementType = a2.agreementTy
self.delegate = self; 这样做有什么问题吗?正确的做法是什么? 谢谢,尼尔。 代码: (UITextField*)initWith:(id)sender:(float)X:(flo
为什么要声明self在类中需要的结构中不需要?我不知道是否还有其他例子说明了这种情况,但在转义闭包的情况下,确实如此。如果闭包是非可选的(因此是非转义的),则不需要声明 self在两者中的任何一个。
这个问题已经有答案了: What does the ampersand (&) before `self` mean in Rust? (1 个回答) 已关闭去年。 我不清楚 self 之间有什么区别
我是一名优秀的程序员,十分优秀!