Linux编程注意问题

来源:互联网 发布:tourex源码 编辑:程序博客网 时间:2024/06/03 12:56
时间:2011-06-13

一、线程为什么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 ((= getchar()) != '\n')
  12.     {
  13.         printf("%c", c);
  14.     }
  15.     return 0; 
  16. }
原创粉丝点击