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
分类:
系统相关 时间:
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