Chinaunix首页 | 论坛 | 博客
  • 博客访问: 281084
  • 博文数量: 53
  • 博客积分: 1293
  • 博客等级: 中尉
  • 技术积分: 506
  • 用 户 组: 普通用户
  • 注册时间: 2011-03-20 22:14
文章分类
文章存档

2014年(1)

2012年(5)

2011年(47)

分类: LINUX

2011-06-13 10:39:18

一、线程为什么gcc编译通过, g++编译失败?
实例如下:
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <pthread.h>

  4. void thread(void)
  5. {
  6.     int i;
  7.     for(i=0;i<3;i++)
  8.      printf("This is a pthread.\n");
  9. }

  10. int main(void)
  11. {
  12.     pthread_t id;
  13.     int i,ret;
  14.     
  15.     ret=pthread_create(&id,NULL,(void *) thread,NULL);
  16.     if (ret != 0) {
  17.         printf ("Create pthread error!\n");
  18.         exit (1);
  19.     }
  20.     
  21.     for(i=0;i<3;i++)
  22.      printf("This is the main process.\n");
  23.     
  24.     pthread_join(id,NULL);
  25.     
  26.     return (0);
  27. }

//gcc编译通过
This is the main process.
This is the main process.
This is the main process.
This is a pthread.
This is a pthread.
This is a pthread.
//g++编译失败如下
example.c: In function ‘int main()’:
example.c:13: error: invalid conversion from ‘void*’ to ‘void* (*)(void*)’
example.c:13: error:   initializing argument 3 of ‘int pthread_create(pthread_t*, const pthread_attr_t*, void* (*)(void*), void*)’

要使g++编译通过,方法如下:

C++禁止将void指针随意赋值给其他指针。
因此你在把void thread(void)函数的入口转换为void*,然后当作参数调用pthread_create时就出现错误,因为pthread_create的参数里应该是指向形如void* fun(void*)函数的一个指针。
可以修改void thread(void)为void* thread(void*),然后去掉调用时的(void*)强制转换,错误消除。

 

二、C语言getchar问题

getchar()输入字符是,需要对回车键进行存储,否则将会在下次一调用getchar()时存储!

  1. int main(void)
  2. {
  3.     char c;
  4.     char a;
  5.     char b;
  6.     a = getchar();
  7.     getchar();//存储回车键 因为回车键也是一个字符,如果没有这个的话,那么他就将第二个字符b存储成回车
  8.     b = getchar();
  9.     getchar(); //存储回车键
  10.     printf ("%c%c\n",a,b);

  11.     while ((c = getchar()) != '\n')
  12.     {
  13.         printf("%c", c);
  14.     }
  15.     return 0;
  16. }
阅读(1282) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~