码迷,mamicode.com
首页 > 2015年01月20日 > 全部分享
RegExp正则表达式对象
JavaScript的RegExp对象有两种创建方式,一种是字面量,一种是对象。var r = /pattern/attributes或者new RegExp(pattern, attributes);参数pattern是一个字符串,指定了正则表达式的模式或其他正则表达式。参数attributes是...
分类:其他好文   时间:2015-01-20 00:43:03    阅读次数:295
数组在内存中的解释
1 public class Array_Memory { 2 public static void main(String[] args) { 3 int[] a = {3,4,66,5};//定义了一个数组 4 5 int[] b = a;//将a这个...
分类:编程语言   时间:2015-01-20 00:44:42    阅读次数:366
【转载】COMMON PITFALLS IN MACHINE LEARNING
【转载】COMMON PITFALLS IN MACHINE LEARNING
分类:系统相关   时间:2015-01-20 00:43:42    阅读次数:349
大话设计模式-简单工厂模式
/// /// 运算类 /// public class Operation { private double _numberA = 0; private double _numberB = 0; /// /// ...
分类:其他好文   时间:2015-01-20 00:42:32    阅读次数:291
2061条   上一页 1 ... 119 120 121 122
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!