从内部对象方法获取线程名称
本文关键字:线程 获取 内部对象 方法 | 更新日期: 2023-09-27 18:32:34
我知道我可以通过调用 Thread.CurrentThread.Name 来获取线程名称
但我遇到了一个棘手的场景。
我创建了两个线程,每个线程启动一个新对象(说 objA)并运行一个方法。
在对象(objA)方法(objAM)中,我创建另一个对象(说objB)并运行一个方法(objBM)。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
TESTA a = new TESTA();
}
}
class TESTA
{
private Thread t;
public TESTA()
{
t = new Thread(StartThread);
t.Name = "ABC";
t.IsBackground = true;
t.Start();
t = new Thread(StartThread);
t.Name = "XYZ";
t.IsBackground = true;
t.Start();
}
private void StartThread()
{
objA thisA = new objA();
}
}
class objA
{
private System.Threading.Timer t1;
public objA()
{
objAM();
t1 = new Timer(new TimerCallback(testthread), null, 0, 1000);
}
private void objAM()
{
Console.WriteLine("ObjA:" + Thread.CurrentThread.Name);
}
private void testthread(object obj)
{
objB thisB = new objB();
}
}
class objB
{
public objB()
{
objBM();
}
private void objBM()
{
Console.WriteLine("ObjB:" + Thread.CurrentThread.Name);
}
}
}
但 objB 中 Thread.CurrentThread.Name 的值返回空。
如何在 objBM 中获取线程名称?
来自 System.Threading.Timer 的描述:该方法不在创建计时器的线程上执行;它在系统提供的 ThreadPool 线程上执行。
因此,您的testthread
方法在未命名的线程池线程上执行。顺便说一句,您可以通过致电Thread.CurrentThread.IsThreadPoolThread
进行验证。