码迷,mamicode.com
首页 >  
搜索关键字:mutable    ( 542个结果
ios-获取商店已上线app信息
NSString *url = [[NSString alloc] initWithFormat:@"http://itunes.apple.com/lookup?id=%@",@"已上线App ID"]; [Com afPostRequestWithUrlString:url parms:nil ... ...
分类:移动开发   时间:2016-12-13 10:19:02    阅读次数:203
转 一个典型的 C++ 程序员成长经历:
1. 完整的学一遍 C++ 所有语言特性,典型书籍 "The C++ Programming Language" Part1, Part2, "C++ Primer" 感觉 C++ 像大杂烩(多编程范型),各种精妙的语法特性 (friend, virtual/RTTI, const/mutable, ...
分类:编程语言   时间:2016-12-10 18:44:42    阅读次数:289
NSCache使用
苹果官方的解释 An NSCache object is a mutable collection that stores key-value pairs, similar to an NSDictionary object. The NSCache class provides a program ...
分类:系统相关   时间:2016-12-05 01:55:56    阅读次数:210
Hadoop-2.7.3 问题收集
问题1:在DFS Lcation 上不能多文件进行操作: 在Hadoop上的每个节点上修改该文件 conf/mapred-site.xml 增加: <property> <name>dfs.permissions</name> <value>false</value> </property> 关闭权 ...
分类:其他好文   时间:2016-12-04 00:07:25    阅读次数:168
元组Tuple、数组Array、映射Map
一、元组Tuple 元组Tuple是不同类型的值的聚集,元组的值将单个的值包含在圆括号中来构成,元组可以包含一个不同类型的元素 如 val riple = (100, "Scala" , "Spark")1、元组中可以包含不同类型的元素,如上,把鼠标放在riple上,IDE会自动推断出元组riple ...
分类:编程语言   时间:2016-11-29 22:41:02    阅读次数:303
Beginning Scala study note(6) Scala Collections
Scala's object-oriented collections support mutable and immutable type hierarchies. Also support functional higher-order operations such as map, filte ...
分类:其他好文   时间:2016-11-29 06:37:20    阅读次数:211
Beginning Scala study note(4) Functional Programming in Scala
1. Functional programming treats computation as the evaluation of mathematical and avoids state and mutable data. Scala encourages an expression-orien ...
分类:其他好文   时间:2016-11-27 16:58:23    阅读次数:162
Leetcode——2 Range Sum Query - Mutable(树状数组实现)
Problem: Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive. The update(i, val) function modifies nu ...
分类:编程语言   时间:2016-11-27 11:56:02    阅读次数:285
新浪微博客户端(38)-显示键盘上的工具条
DJComposeToolbar.m DJComposeViewControll.m 最终效果: ...
分类:其他好文   时间:2016-11-25 22:52:23    阅读次数:204
mutable variable accessible from closure
在写解析表达式的时候由于循环遍历从表达式截取下来的字符串数组,再加上要在商品列表中做相应的筛选。就是从一个商品列表中筛选出符合条件的商品进入到下一次筛选,于是我想到了用underscore里边的filter方法来减少代码,如下: 1 for (var j = 0; j < temp.length; ...
分类:数据库   时间:2016-11-25 19:47:07    阅读次数:178
542条   上一页 1 ... 34 35 36 37 38 ... 55 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!