1,eval方式解析,恐怕这是最早的解析方式了。如下: function strToJson(str){ var json = eval('(' + str + ')'); return json; } 记得别忘了str两旁的小括号。 2,new Function形式,比较怪异哦。如下 functi ...
分类:
Web程序 时间:
2016-09-15 10:58:18
阅读次数:
231
Given a non-empty array of integers, return the k most frequent elements. For example,Given [1,1,1,2,2,3] and k = 2, return [1,2]. Note: You may assum ...
分类:
其他好文 时间:
2016-09-15 06:27:16
阅读次数:
188
Given a string of numbers and operators, return all possible results from computing all the different possible ways to group numbers and operators. Th ...
分类:
其他好文 时间:
2016-09-15 06:21:52
阅读次数:
131
Given an encoded string, return it's decoded string. The encoding rule is: k[encoded_string], where the encoded_string inside the square brackets is b ...
分类:
其他好文 时间:
2016-09-15 06:18:11
阅读次数:
93
1、try块中没有抛出异常,try、catch和finally块中都有return语句 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 public static int NoException(){ int i=10; try{ System.out.println( ...
分类:
其他好文 时间:
2016-09-14 21:57:10
阅读次数:
162
@Bean @Override @ConditionalOnMissingBean public PlatformTransactionManager annotationDrivenTransactionManager() { return new DataSourceTransactionMan ...
分类:
其他好文 时间:
2016-09-14 20:34:51
阅读次数:
134
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or ...
分类:
其他好文 时间:
2016-09-14 16:50:24
阅读次数:
156
实现代码-code <script type="text/javascript"> $.extend($.fn.datagrid.methods, { columnMoving: function(jq) { return jq.each(function() { var target = this ...
分类:
其他好文 时间:
2016-09-14 15:12:27
阅读次数:
1553
函数:1、有参有反public 数据类型 函数名(数据类型 参数名){ return 数据类型;} 2、有参无反public void 函数名(数据类型 参数名){ } 3、无参无反public void 函数名(){ } 4、无参有反public 数据类型 函数名(){ return 数据类型;} ...
分类:
其他好文 时间:
2016-09-14 15:12:13
阅读次数:
147
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string. If the last word ...
分类:
其他好文 时间:
2016-09-14 12:45:55
阅读次数:
144