div class="container"> 宿舍管理系统 系统管理员 宿舍管理员 学生 记住我 ${error } 登录 重置 版权所有 2014 Lero http://www.lero.com
分类:
Web程序 时间:
2014-09-14 17:50:07
阅读次数:
222
默认用qtcreator5.2.0创建了一个quick项目,却报如下错误:error:cstdlib.h no such file or directory解决方法:打开项目文件untitled4.pro,加上INCLUDEPATH = d:/Soft/cygwin/usr/local/androi...
分类:
移动开发 时间:
2014-09-14 17:49:57
阅读次数:
281
使用qtcreator加androidndk编译项目时报错:error: qrc_qml.obj: requires unsupported dynamic reloc R_ARM_REL32; recompile with -fPICerror: undefined reference to '_...
分类:
其他好文 时间:
2014-09-14 16:39:27
阅读次数:
415
1 #include 2 3 using namespace std; 4 //顺序链表 5 #define MAXSIZE 20 6 #define OK 1 7 #define ERROR 0 8 #define TRUE 1 9 #define FALSE 010 typedef int...
分类:
其他好文 时间:
2014-09-14 16:34:57
阅读次数:
182
有些时候你的工程会用到第三方库,比如你会用到一个叫libxxx库,,编译和安装后,你通常会在/usr/local/lib和/usr/local/include/目录下发现有xxx/目录,但是很多时候你在代码中引用libxxx库的头文件时,声明如下:#include 你的代码写好后,你编译时会出现:fatal error: xxx.h: 没有那个文件或目录亦或者是:error: 对'xxx_read...
分类:
其他好文 时间:
2014-09-14 15:26:57
阅读次数:
224
今天遇上了一个非常蛋疼的问题:
本来今天打算在Ubuntu下搭个android开发环境,从官网上下载了Eclipse+ADT,解压,打开,一切正常。
不料,天有不测风云,新建了一个Project,刚刚打算敲代码时,新建了一个类,光标就闪了几下,直接闪退!妈蛋,再试一次,依旧闪退!
看看终端中的信息,如下:
#
# A fatal error has been detected by th...
分类:
系统相关 时间:
2014-09-14 14:08:37
阅读次数:
264
#include#include#define N 5#define NULL 0#define OK 1#define ERROR 0typedef struct LNode{ int data; struct LNode *next;}LNode,*list;void creatLi...
分类:
其他好文 时间:
2014-09-14 14:05:17
阅读次数:
210
Failed to get the adb version: Cannot run program "/home/jayhomzhou/android/android-sdk/platform-tools/adb": error=2, 没有那个文件或目录64位系统,Ubuntu11.04,搭建JDK...
分类:
移动开发 时间:
2014-09-14 13:59:27
阅读次数:
197
SQL> startup ERROR:ORA-24324: 未初始化服务句柄 ORA-01041: 内部错误, hostdef 扩展名不存在。SQL> conn sys /nolog;ERROR:ORA-12560: TNS: 协议适配器错误SQL> conn scott/tiger@orcl;ER...
分类:
其他好文 时间:
2014-09-14 12:44:37
阅读次数:
182
在网上搜到的一个很完整的叙述,就直接帖过来了.如下:****************************************************说明:常遇到的socket网络编程问题。在工程里已经#include 了结果还是报错,郁闷死了,我用的是Dev-C++,起先还以为是IDE的问题...
分类:
其他好文 时间:
2014-09-14 12:44:07
阅读次数:
183