try{ if(window.console&&window.console.log) {console.log("一张网页,要经历怎样的过程,才能抵达用户面前?\n 一位新人,要经历怎样的成长,才能站在技术之巅?\n 探寻这里的秘密;\n 体验这里的挑战;\n 成为这里的主人;\n 加入百度,加入...
分类:
其他好文 时间:
2014-06-27 21:14:21
阅读次数:
286
(function hello() { try { return console.log('return'); } catch (e) { } finally { console.log('finally'); }}());有趣的是如果不加上方法名hello的话,re...
分类:
其他好文 时间:
2014-06-26 21:52:22
阅读次数:
170
前段时间学习《深入浅出Nodejs》时,在第四章 - 异步编程中作者朴灵曾提到,异步编程的难点之一是异常处理,书中描述"尝试对异步方法进行try/catch操作只能捕获当次事件循环内的异常,对call back执行时抛出的异常将无能为力"。 果然,项目测试过程中,连续两天遇到了Node.js进...
分类:
Web程序 时间:
2014-06-26 20:38:44
阅读次数:
334
he following commands will helpful to delete the expired archive log files using Oracle Recovery Manager(RMAN).Connect to the Rman prompt and try the ...
分类:
其他好文 时间:
2014-06-26 20:20:52
阅读次数:
262
最常用快捷键快捷键 功能 备注Ctrl+1 快速修复 最经典的Alt+/ 提供内容的帮助 记不全方法 类 属性最常用输入try 按alt / 自动出现代码try catch 一般很容易出现异常的代码或者是很容易出错误的代码放在try...catch中Ctrl+O 显示类中 方法 属性和大纲 查找.....
分类:
系统相关 时间:
2014-06-25 18:48:45
阅读次数:
266
错误140624 0:53:42 [ERROR] /usr/libexec/mysqld: Incorrect key file for table './xx/xxx.MYI'; try to repair it140624 0:53:42 [ERROR] /usr/libexec/mysqld....
分类:
数据库 时间:
2014-06-25 18:38:51
阅读次数:
900
private static List getxxxx(Context ctx) { try {Scanner sc = new Scanner( ctx.openFileInput("xxx.txt")); ArrayLis...
分类:
移动开发 时间:
2014-06-25 16:16:20
阅读次数:
197
int i=0; try { i = Int16.Parse(txt_num.Text); } catch { } TextBox _txt;//创建text对象 if (i > 0) { for (int _i = 0; _i < i; _i++) { _txt = new TextBox();....
分类:
Web程序 时间:
2014-06-25 14:42:02
阅读次数:
227
可能是我们共同的强迫症,不要说看到,就算想到太多的try-catch也很难接受。于是,开始了一些尝试,这些尝试都算是思维的锻炼、场面的见识、经验的积累。Version1 —— 原始版本一开始,在ConcreteService中,拥有了太多的try-catch,而影响码字的兴趣。代码1 原始代码///...
分类:
其他好文 时间:
2014-06-25 13:41:09
阅读次数:
169
今天要做一个功能 导出录取学生信息 费了半天劲结果被老师教育了一番 好了不抱怨了DataSet数据类型导出Excel好了不说了上源码 try{ DataSet dsExcel = xqgl.Select_DCXSXXALL(); DataGrid dg = new DataGrid(); dg...
分类:
Web程序 时间:
2014-06-25 09:41:11
阅读次数:
201