visual studio 2005编程C#中如何在一个类中包含另一个类类型的数组
2个回答
展开全部
你说的泛型吧.或者是多线程.
如果是泛型使用List<object> name=new list<object>()
多线程使用:
Thread[] threads = new Thread[25];
for (int i = 0; i < threads.Length; i++)
{
threads[i] = new Thread(new ParameterizedThreadStart(GetUrl)); //带参数线程
(threads[i] as Thread).Start(i);
}
如果是泛型使用List<object> name=new list<object>()
多线程使用:
Thread[] threads = new Thread[25];
for (int i = 0; i < threads.Length; i++)
{
threads[i] = new Thread(new ParameterizedThreadStart(GetUrl)); //带参数线程
(threads[i] as Thread).Start(i);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询