码迷,mamicode.com
首页 >  
搜索关键字:archiver error    ( 30138个结果
栈的基础操作——2,8,16进制的入栈——数组类型定义
#define stack_init_size 100 #define stackincrement 10 typedef int ElemType; typedef int status; const status error=0; const status ok=1; const status overflow=-2; const int MAXSIZE = 100; typedef st...
分类:其他好文   时间:2014-05-26 06:17:29    阅读次数:243
质因数的求法
质因数分解 /* 求质因数 */ #include #include int main() { int n,a=2; printf("please input n:"); scanf("%d",&n); if(n<=1) { printf("input error!\n"); return -1; } while(a*a < n) { while(n%a==0) ...
分类:其他好文   时间:2014-05-26 05:50:40    阅读次数:279
vc 报error LNK2005的处理
昨天编译一个小程序的时候,报了个错,或者说2个 1>uafxcw.lib(dllmodul.obj) : error LNK2005: _DllMain@12 已经在 LIBCMT.lib(dllmain.obj) 中定义 1>uafxcw.lib(afxmem.obj) : error LNK2005: "void __cdecl operator delete(void *)" (??3@...
分类:其他好文   时间:2014-05-26 03:18:48    阅读次数:200
elmah - Error Logging Modules and Handlers for ASP.NET - 1 : 初体验
elmah(英文):https://code.google.com/p/elmah/写作思路:先看结果,然后再说原理elmah文章基本内容如下1.安装2.基本使用3.详细配置讲解简介ELMAH是一个开源项目,其目的是记录和报告在ASP.NET Web应用程序未处理的异常。早在2004年9月与Atif...
分类:Web程序   时间:2014-05-26 02:21:44    阅读次数:517
CentOS命令登录MySQL时,报错ERROR 1045 (28000):
CentOS命令登录MySQL时,报错ERROR 1045 (28000): Access denied for user root@localhost (using password: NO)错误解决方法1、停用mysql服务:# /etc/rc.d/init.d/mysqld stop2、输入命...
分类:数据库   时间:2014-05-26 01:58:12    阅读次数:306
关于 Notice: Undefined index: 2 in C:\wamp\www\...报错 的解决办法
首先,这个不是错误,是warning。 方法1:服务器配置修改 (Apache服务器中的php.ini配置文件) 修改php.ini配置文件,error_reporting = E_ALL & ~E_NOTICE方法2:对变量进行初始化,规范书写(比较烦琐,因为有大量的变量)。方法3:每个文件头.....
分类:其他好文   时间:2014-05-26 01:47:12    阅读次数:333
【Android】Android import和export使用说明 及 export报错:jarlist.cache: Resource is out of sync with the file syst解决
在Android开发export项目时发现有时会报错,内容如下:Problems were encountered during export: Error exporting PalmIdentify/bin/jarlist.cache: Resource is out of sync with ...
分类:移动开发   时间:2014-05-26 00:36:12    阅读次数:437
c语言线性表
c语言的线性表,还没有完善 1 #include 2 #define MAXSIZE 100 //初始空间分配量 3 #define OK 1 4 #define ERROR 0 5 #define TRUE 1 6 #define FALSE 1 7 typedef int ElemTyp...
分类:编程语言   时间:2014-05-26 00:26:39    阅读次数:339
AFNetworking2.x 使用过程中遇到的问题
1.//下面写一下关于AFNetworking2.0的GET数据请求问题,刚开始的时候没有写下面标红的代码,所以导致有一个问题,错误显示如下: Error: Error Domain=AFNetworkingErrorDomain Code=-1016 "Request failed: unacceptable content-type: text/html" UserInfo=0x913a...
分类:Web程序   时间:2014-05-24 23:45:53    阅读次数:365
Hibernate 异常 : Error parsing JNDI name [xxx]
初学Hibernate,用官方给的日志模板配置好了日志,跑起小例子,控制台中的日志里写了一些异常: 21:16:36,036DEBUGEntityLoader:146- Staticselectforentitycn.sjll.hibernate435.model.UserModel [OPTIMISTIC_FORCE_INCREMENT]:selectusermodel0_.IDasID1_0_0_, usermodel0_.N..
分类:系统相关   时间:2014-05-24 16:42:45    阅读次数:388
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!