`

c++错误

    博客分类:
  • c++
c++ 
阅读更多
1:AA.h:1:17: 错误: ‘struct bb’重定义
AA.h:1:17: 错误: ‘struct bb’的前一个定义

没有 加 #ifndef AA_h
  2 #define AA_h

但是引用了多次 AA.h

2: 

  cout<<"type:"<<type<<"\t namespace:"<<bnamespace<<"\tvalue:"<<value <<endl;

  string s(str)

假如上面的参数有为 NULL 的,为包错误,而且默认会终止进程的运行.
错误信息:type:terminate called after throwing an instance of 'std::logic_error'
  what():  basic_string::_S_construct null not valid
3:


undefined reference to 'pthread_create'问题解决
由于是Linux新手,所以现在才开始接触线程编程,照着GUN/Linux编程指南中的一个例子输入编译,结果出现如下错误:
undefined reference to 'pthread_create'
undefined reference to 'pthread_join'

问题原因:
    pthread 库不是 Linux 系统默认的库,连接时需要使用静态库 libpthread.a,所以在使用pthread_create()创建线程,以及调用 pthread_atfork()函数建立fork处理程序时,需要链接该库。

问题解决:
    在编译中要加 -lpthread参数
    gcc thread.c -o thread -lpthread
    thread.c为你些的源文件,不要忘了加上头文件#include<pthread.h>

4:
./a.out: error while loading shared libraries: liblog4cplus-1.0.so.3: cannot open shared object file: No such file or directory
执行:
root@aircoder:/usr/local/lib# echo "/usr/local/lib" >> /etc/ld.so.conf
root@aircoder:/usr/local/lib# ldconfig
root@aircoder:/usr/local/lib#

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics