1 public class AgeBelow18Exception extends RuntimeException {2 /*public String getMessage() {3 return "Please Call Users Above 18 Years";4...
分类:
其他好文 时间:
2014-08-06 22:14:32
阅读次数:
241
200.Which operation requires that you create an auxiliary instance manually before executing theoperation? (Choose all that apply.)A. Backup-based dat...
分类:
其他好文 时间:
2014-08-06 21:51:22
阅读次数:
2954
先上cancel方法源码和注解 /** * Cancel the dialog. This is essentially the same as calling {@link #dismiss()}, but it will * also call your {@link Dia...
分类:
其他好文 时间:
2014-08-06 18:36:51
阅读次数:
267
1.取数组最大值,最小值Math.max.apply(null,[1,2,3,32,3]);Math.min.apply(null,[1,2,3,32,3]);2.旧版IE setTimeout(fn,0),延迟太大,可利用image 死链var img = new Image();img.onlo...
分类:
Web程序 时间:
2014-08-06 11:39:41
阅读次数:
207
【原因分析】 ????不详,可能和Run?Android?Lint有点关系吧。就是创建项目时,我们设置了最低版本API?Level,比如我的是8,因此,Eclipse检查我调用的API后,发现版本号不能向低版本兼容,比如我用的“Not...
分类:
移动开发 时间:
2014-08-06 10:42:41
阅读次数:
238
安装完后,打开后台就看到这个,特别烦,想立马干掉它。
找到文件admin/template/start.htm
文件找出所有的
Ajax.call('cloud.php?is_ajax=1&act=cloud_remind','', cloud_api, 'GET', 'JSON');
全部在前面打个双斜杠“//” 就可以了 !
下面就是效果截图:...
分类:
其他好文 时间:
2014-08-06 02:03:11
阅读次数:
225
切换至tdump.exe所在目录:C:\DocumentsandSettings\Administrator>cdD:\ProgramFiles\CodeGear\RADStudio\6.0\binD:\ProgramFiles\CodeGear\RADStudio\6.0\bin>tdump.exeD:\Program\CKD\05191800\Fnthex32.dll>d:\Fnthex32.txt输出结(红色字体为函数名):Exportsfr..
分类:
其他好文 时间:
2014-08-05 23:11:22
阅读次数:
236
1、编译成android时,需要修改jni/android.mk,每个cpp都修改一下太麻烦,可以让他自动识别。
# 遍历目录及子目录的函数
define walk
$(wildcard $(1)) $(foreach e, $(wildcard $(1)/*), $(call walk, $(e)))
endef
# 遍历Classes目录
ALLFILES...
分类:
其他好文 时间:
2014-08-05 15:58:19
阅读次数:
224
function curry(fn){ var slice = Array.prototype.slice; var arr = slice.call(arguments,1); return function(){ var newArr = slice.call(ar...
分类:
编程语言 时间:
2014-08-05 15:22:29
阅读次数:
220
Unix下实现如题功能用下面的代码:import rlcompleter, readlinereadline.parse_and_bind('tab: complete')但readline不能在win中用,需要为windows编译好的pyreadlinepip install pyreadline...
分类:
编程语言 时间:
2014-08-05 13:41:09
阅读次数:
439