function isArray(a) { //Date,Array,String,Object,Function,Boolean,Number return a.constructor.toString().indexOf("Date") > -1; } ...
分类:
编程语言 时间:
2017-01-13 14:52:41
阅读次数:
190
FString转UTF8 UTF8转FString ...
分类:
其他好文 时间:
2016-12-30 13:04:43
阅读次数:
2755
JavaScript 有Date Array String等这样的内置对象,功能强大实用简单,但在处理一些复杂逻辑的时候,内置对象就很无力了,往往需要开发者自定义对象。 对象是什么 从JavaScript定义上讲对象是无序属性的集合,其属性可以包含基本值,对象或函数。也就是说对象是一组没有特定顺序的 ...
分类:
编程语言 时间:
2016-12-27 07:33:10
阅读次数:
187
Be careful, split() will not include trailing empty strings in the result array The string "boo:and:foo", for example, split(":")的结果是 {“boo”, "and", " ...
分类:
其他好文 时间:
2016-12-23 09:53:08
阅读次数:
205
1.对于上一篇讲解的scala的一些补充 val files = Array[String]("a.txt","b.txt","c.txt") for(f <- files){xxxx} 目标一:熟悉Scala Actor并发编程 目标二:为学习Akka做准备 注:我们现在学的Scala Actor ...
分类:
其他好文 时间:
2016-12-23 07:45:43
阅读次数:
170
1.mapValus(fun):对[K,V]型数据中的V值map操作(例1):对每个的的年龄加2 object MapValues { def main(args: Array[String]) { val conf = new SparkConf().setMaster("local").setA ...
分类:
其他好文 时间:
2016-12-22 11:39:59
阅读次数:
227
同样是PHP版本问题:in_array()函数 第二个参数应该为数组 但是 lnmp下,PHP5.3不报错,wamp下PHP5.5报以下错误: ( ! ) Warning: in_array() expects parameter 2 to be array, string given in D:\ ...
分类:
Web程序 时间:
2016-11-17 18:09:27
阅读次数:
179
一,字符串根据逗号,分割成数组 二,数组转换为以逗号分割的字符串 ...
分类:
编程语言 时间:
2016-11-15 16:24:01
阅读次数:
126
string[] Array = new string[] { };string str = "";string Name=string.Empty; for(int i=0;i<3;i++) { Name="s"; str += Name + ","; } if (str.Length >= 2) ...
分类:
其他好文 时间:
2016-11-01 18:32:50
阅读次数:
125
JSON 的语法规则十分简单,无论用何种方法总结都只有数条而已,它参考了 C 语言家族的一些习惯,学习起来并不会感到陌生。 回顾JSON 的五点语法 1)- 数组(Array)用方括号(“[]”)表示。 2)- 对象(Object)用大括号(”{}”)表示。 3)- 名称/值对(name/value ...
分类:
Web程序 时间:
2016-10-27 19:14:46
阅读次数:
181