作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个简单的线程来打印数字,问题是该线程是在 scanf 上打印的。类似这样的事情。
input> DATAOFTHREAD
但我想打印类似的结果
DATAOFTHREAD
input>
这可能吗?我应该使用什么功能?这是我的代码:
#include <stdio.h>
#include <pthread.h>
void *connection_handler(void* data) {
int i = (int)data;
for(i=0;i<5;i++) {
printf("%d", i);
fflush(stdout);
}
pthread_exit(NULL);
}
int main()
{
int t;
int x;
int rc;
pthread_t thread_id;
rc = pthread_create(&thread_id, NULL, connection_handler, (void *)x);
if(rc) {
printf("Error en pthread()\n");
return 1;
}
printf("Ingresa un numero: ");
scanf("%d", &t);
printf("%d\n", t);
pthread_exit(NULL);
return 0;
}
谢谢
最佳答案
您可以调用 pthread_join,以便仅在线程完成后才执行 scanf:
pthread_join(&thread_id, NULL);
printf("Ingresa un numero: ");
scanf("%d", &t);
顺便说一句,您不需要在 main() 中调用 pthread_exit。
关于c - scanf 中断,printf 在线程中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26518920/
我是一名优秀的程序员,十分优秀!