多线程的创建例子

对创建多线程和理解多线程会有些帮助

 

CWinThread的问题

检举|2010-07-29 16:24 sadfleg | 分类:C/C++ | 浏览1767次
我想实现这样一个功能,用CWinThread开启一个console窗口和两个线程,线程1每5秒向console窗口写thread1(用printf),线程2每7秒向console窗口写thread2

现在有几个问题  
1. 如何开启一个console窗口,我现在是
CWinThread *thread1 = new CWinThread(thread1,NULL);
thread1 ->CreateThread(CREATE_NEW_CONSOLE,0,NULL);
CREATE_NEW_CONSOLE 似乎并没有开启一个新的console窗口具体该怎么实现

2.thread2如何得到thread1开启的窗口的输出流(应该是要这样吧)

3.主线程如何终止 thread1程序的执行,依靠CWinThread *thread1指针
  我看到有 thread1->SuspendThread() ,但没看到有 thread1->exitThread() 之类的啊  

/**************************下面是部分源码,求好心人帮我完善下********************************/
unsigned int thread1(void *param)
{
while(1)
{
Sleep(5000);
printf("thread1\n");
}
return 0;
}

unsigned int thread2(void *param)
{
CWinThread *t1 =(CWinThread *)param;
//这里要怎样靠t1来重定向t2的输出流
while(1)
{
Sleep(7000);
printf("thread2\n");
}
return 0;
}

void CTestApp::test()//这是主线程吗?????
{
CWinThread t1 = new CWinThread(thread1,NULL);
CWinThread t1->CreateThread(CREATE_NEW_CONSOLE,0,NULL); //这里怎样开启一个console窗口
CWinThread t2 = new CWinThread(thread2,(void *)&t1);
CWinThread t2->CreateThread(CREATE_NEW_CONSOLE,0,NULL);

Sleep(100000);

//这里怎样结束t1,t2线程
}
我来帮他解答
提问者采纳
检举|2010-07-30 10:34
1,同样,你创建了窗口就必须显示窗口和更新窗口,不然窗口是不会出来的
2,你用#include <iostream.h>包含输入输出流对象
3,thread->ExitThread(...)来终止你的线程,ExitThread()函数是有的,其实,终止线程还有一个函数就是TerminateThread()函数,但是一般不用它,ExitThread()可以通知所有附属的这个进程的DLL停止工作,而TerminateThread()并不通知所属的DLL停止工作,这就会导致你的进程终止了,但是你的进程的DLL还在工作,就会出现错误。
### 回答1: 下面是一个简单的使用 C 语言创建多线程例子: ```c #include <stdio.h> #include <stdlib.h> #include <pthread.h> void *thread_func(void *arg) { int i; for (i = 0; i < 10; i++) { printf("Thread says hi!\n"); sleep(1); } pthread_exit(NULL); } int main() { pthread_t my_thread; int ret; ret = pthread_create(&my_thread, NULL, thread_func, NULL); if (ret != 0) { printf("Error creating thread!\n"); exit(EXIT_FAILURE); } printf("Main function says hi!\n"); pthread_join(my_thread, NULL); return 0; } ``` 在这个例子中,我们使用了 `pthread_create()` 函数来创建一个新的线程,并传递给它一个指向 `thread_func()` 函数的指针作为参数。在 `thread_func()` 函数中,我们使用 `printf()` 函数输出一条消息,并使用 `sleep()` 函数暂停一秒钟,以便我们可以看到线程运行的效果。在主函数中,我们使用 `pthread_join()` 函数等待线程完成,并在输出一条消息后退出程序。 ### 回答2: 以下是一个用C语言创建多线程例子: ```c #include <stdio.h> #include <pthread.h> #define NUM_THREADS 5 // 线程函数 void *printHello(void *threadID) { long tid = (long)threadID; printf("Hello from thread %ld\n", tid); pthread_exit(NULL); } int main() { pthread_t threads[NUM_THREADS]; int rc; long t; // 创建多个线程 for (t = 0; t < NUM_THREADS; t++) { printf("Creating thread %ld\n", t); rc = pthread_create(&threads[t], NULL, printHello, (void *)t); if (rc != 0) { printf("Error creating thread. Return code: %d\n", rc); return -1; } } // 等待所有线程结束 for (t = 0; t < NUM_THREADS; t++) { rc = pthread_join(threads[t], NULL); if (rc != 0) { printf("Error joining thread. Return code: %d\n", rc); return -1; } } printf("All threads completed.\n"); return 0; } ``` 以上代码创建了5个线程,每个线程打印出自己的线程ID。在主函数中,首先创建了5个线程,并且通过`pthread_create`函数来指定线程执行的函数为`printHello`,并传递每个线程对应的线程ID作为参数。然后通过`pthread_join`函数等待每个线程结束。最后输出"All threads completed."表示所有线程执行完毕。 ### 回答3: C语言创建多线程的一个简单例子如下所示: #include <stdio.h> #include <stdlib.h> #include <pthread.h> // 回调函数,用于线程执行 void *thread_function(void *arg) { int *thread_id = (int *)arg; printf("线程 %d 正在执行\n", *thread_id); // 执行其他操作... printf("线程 %d 执行完毕\n", *thread_id); pthread_exit(NULL); } int main() { pthread_t thread1, thread2; int id1 = 1, id2 = 2; // 创建线程1 if (pthread_create(&thread1, NULL, thread_function, (void *)&id1) != 0) { fprintf(stderr, "无法创建线程1\n"); return 1; } // 创建线程2 if (pthread_create(&thread2, NULL, thread_function, (void *)&id2) != 0) { fprintf(stderr, "无法创建线程2\n"); return 1; } // 等待线程1执行完毕 if (pthread_join(thread1, NULL) != 0) { fprintf(stderr, "无法等待线程1执行完毕\n"); return 1; } // 等待线程2执行完毕 if (pthread_join(thread2, NULL) != 0) { fprintf(stderr, "无法等待线程2执行完毕\n"); return 1; } printf("所有线程执行完毕\n"); return 0; } 这个例子创建了两个线程,每个线程都执行了相同的回调函数`thread_function`。在主函数中,我们利用`pthread_create`函数创建了线程,并使用`pthread_join`函数等待线程执行完毕。每个线程都传递了一个整数作为参数,用于标识不同的线程。在回调函数中,我们通过强制转换将参数指针转换为整数,并在控制台打印出相应的线程标识。最后,主线程等待两个子线程执行完毕后,打印了"所有线程执行完毕"的消息。这个例子展示了C语言如何创建和管理多个线程的基本操作。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值