如下图所示,请先在PlaySettings中修改Api Compatibility Level 改成.NET 2.0,如果不修改会报错注意:Error building Player: Extracting referenced dlls failed.无论你编译任何平台都请修改一下这里, 留言中有...
分类:
其他好文 时间:
2014-09-28 17:52:23
阅读次数:
240
升级Debian到wheezy后重新编译php。在编译libiconv时出错(话说俺居然没有找到这货的二进制包)./stdio.h:1010:1: error: 'gets' undeclared here (not in a function)下面报make[2]: *** [progname.o...
分类:
其他好文 时间:
2014-09-28 15:50:22
阅读次数:
221
#powerbywww.phpStudy.net
#usernobody;
worker_processes1;
#error_loglogs/error.log;
#error_loglogs/error.lognotice;
#error_loglogs/error.loginfo;
#pidlogs/nginx.pid;
events{
worker_connections1024;
}
http{
includemime.types;
default_typeapplication/oct..
分类:
数据库 时间:
2014-09-28 15:04:33
阅读次数:
359
在andorid进行调试的过程中,出现下面的错误:解决方法:修改一下应用程序描述符:修改上面的参数就可以了。
分类:
移动开发 时间:
2014-09-28 14:25:12
阅读次数:
217
提示的问题如下: error : argument of type "void *(*)(void *)" is incompatible with parameter of type "CUT_THREADROUTINE"解决方法是将下面的代码void* routine(void *pvoidDa...
分类:
其他好文 时间:
2014-09-28 13:12:12
阅读次数:
323
用G++编译项目的时候发生标题上的错误,原因是,这是c++ 11标准的。在给g++传递命令行的时候加上-std=c++0x就行了。还需要在源码中#include我的cmakelists里面要这样改: set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x...
分类:
其他好文 时间:
2014-09-28 12:49:32
阅读次数:
1526
Java中异常的分类所有异常,都继承自java.lang.Throwable类。Throwable有两个直接子类,Error类和Exception类。ExceptionException则可使从任何标准Java库的类方法,自己的方法以及运行时任何异常中抛出来的基类型。异常可分为执行异常(Runtim...
分类:
编程语言 时间:
2014-09-28 12:09:21
阅读次数:
209
今天在导入 PuultoResfresh 的时候老是出错.
error:
[2014-09-28 10:04:44 - library] Unable to resolve target 'android-16'
[2014-09-28 10:04:59 - PullToRefreshListFragment] Unable to resolve target 'android-16...
分类:
移动开发 时间:
2014-09-28 11:03:31
阅读次数:
129
当我们的虚拟机在非正常关闭后,再次启动机器时,Virtual Box会出现 Runtime error opening 'C:\Users\admin\VirtualBox VMs\Windows Server\Windows Server.vbox for reading: -102 (File....
分类:
其他好文 时间:
2014-09-28 08:56:11
阅读次数:
234
异常:重要知识点
异常处理的代码简单,重要还是理解其思想
一.概述:
异常就是在运行时发生的不正常情况
Throwable:
Error
通常出现重大问题如,运行的类不存在或者内存溢出等
不编写针对代码对其处理
Exception
在运行时运行出现的一起情况,可以通过trt catch finally
Exception和Error的子类名...
分类:
编程语言 时间:
2014-09-28 02:45:50
阅读次数:
352