`
o_o_0
  • 浏览: 15866 次
  • 性别: Icon_minigender_1
  • 来自: 济南
文章分类
社区版块
存档分类
最新评论
文章列表
  http://blog.mixu.net/2011/02/01/understanding-the-node-js-event-loop/ Understanding the node.js event loop The first basic thesis of node.js is that I/O is expensive:  So the largest waste with current programming technologies comes from waiting for I/O to complete. There are several ways i ...
https://developer.mozilla.org/en-US/docs/JavaScript/A_re-introduction_to_JavaScript   可能在IE中引起内存泄漏的两种情况   1.JS对象与Dom对象循环引用   function leakMemory() { var el = document.getElementById('el'); var o = { 'el': el }; el.o = o; }    2.闭包   function addHandler() { var els = doc ...
原文 Reflection in Javascript It’s very easy to do reflection in Javascript. Reflection is when your code looks onto itself to discover its variables and functions. It allows two different Javascript codebases to learn about each other, and it’s useful for exploring third-party APIs. Pream ...
为了你能正常使用Google 请不要使用以下关键字搜索,把以下代码保存成html文件,再用浏览器打开即可看到 <html> <head> </head> <body> <script type="text/javascript"> var a=[[14523],[1492],[6656],[8759],[63166],[9287],[4369],[8811],[7556],[6262],[14399],[64357],[64353],[10546],[6450],[63794],[61408],[1 ...
把优先级别为prio的任务置为就绪状态:OSRdyGrp | =OSMapTbl[prio>>3]; OSRdyTbl[prio>>3] | = OSMapTbl[prio&0x07]; 如果要使一个优先级别为prio的任务脱离就绪状态则可使用如下类似代码:if((OSRdyTbl[prio>>3]&=~OSMapTbl[prio&0x07])==0) OSRdyGrp&=~OSMapTbl[prio>>3];
Option Explicit Public FileNames As Variant Public SaveName As Variant Public pptApp As Object Sub GetFiles() FileNames = Application.GetOpenFilename _ (FileFilter:="演示文稿(*.ppt),*.ppt", FilterIndex:=1, _ MultiSelect:=True, Title:="打开需要合并的文件") End Sub Sub SaveFileAs() ...
一、Java package test.utils.ctag; public class CustomTags { public static boolean equals(String s1,String s2){ if(s1==s2) return true; if(s1!=null) return s1.equals(s2); return false; } } 二、TLD <?xml version="1.0" encoding="UTF-8" ?> <taglib xmlns=& ...
Expression Language A primary feature of JSP technology version 2.0 is its support for an expression language (EL). An expression language makes it possible to easily access application data stored in JavaBeans components. For example, the JSP expression language allows a page author to ac ...
HTML elements can be grouped together with <div> and <span> HTML Block Elements Most HTML elements are defined asblock levelelements or asinlineelements. Block level elements normally start (and end) with a new line when displayed in a browser. Examples: <h1>, <p>, ...
Deprecated Tags and Attributes In HTML 4, several tags and attributes were used to style documents. These tags are not supported in newer versions of HTML. Avoid using the elements <font>, <center>, and <strike> and the attributes color and bgcolor.
下载地址
下载地址 经测试,实际用时1秒左右 private static final Pattern p = Pattern.compile("\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*"); public static ArrayList<String> extractEmail(int id,int start,int end){ ArrayList<String> list = new ArrayList<String>(); try { for ...
1、引言Oracle数据库的备份方法很多,无论使用那种备份方法,备份的目的都是为了在出现故障后能够以尽可能小的时间和代价恢复系统。比如使用export实用程序导出数据库对象、使用Oracle备份数据库、使用Oracle对称复制、使用Oracle并行服务器、使用Oracle冷备份、使用Oracle热备份等各种备份方法都有其优缺点、适用的场合和相应的软硬件要求。本文主要就用export实用程序导出数据库对象、Oracle冷备份、Oracle热备份这三种最基本的备份方法进行详细的探讨,分析各自的优缺点和适用的场合,并给出自动执行这些备份方案的脚本文件。 2、三种备份方案的比较 冷备份冷备份 ...
should we use annotations? If your answer is yes to the following questions then you can use annotations in your project. 1.Do you have the flexibility to use Java 5 Environment?2.Do you have the knowledge of which production database you are going to use? If yes, you can use annotations, this bri ...
Global site tag (gtag.js) - Google Analytics