gpt4 book ai didi

c# - 线程可以调用线程吗?

转载 作者:行者123 更新时间:2023-12-03 13:20:33 24 4
gpt4 key购买 nike

说我有这段代码:

public int A = 0;

//This is the method that will
//be run as a thread
public void Thread1()
{
public bool continue = true;
while (continue == true)
{
if (A==2)
{
Thread t2 = new Thread(new ThreadStart(Thread2));
}

//Some other code here
}

}

//This is the method that Thread1
//will try to run if A = 2
public void Thread2()
{
//Coding in this thread
}

假设通过其他方法或类似方法将int A设置为2。线程1能够从自身内部创建新的线程2吗?我觉得我会问,因为当我尝试做一些我不完全理解的事情时,我习惯于大时间弄乱我的代码。

最佳答案

是的,线程可以创建其他线程。
请记住,程序加载到的“默认单线程”只是另一个普通线程,因此在启动thread1时已经在从一个线程创建新线程。

关于c# - 线程可以调用线程吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16951262/

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