For与Function进阶实战、Lazy的使用一、for循环的进阶实战Defmain=(args:Array[String]):Unit{For(i<-1to3;j<-3to8)Println((100*i+j)+”")也可在for循环中加入条件表达式:For(i<-1to3;j<-3to8ifi!=j)Println((100*i+j)+”")}定义函数的时候一般函数都有值,函数..
分类:
其他好文 时间:
2015-08-12 15:03:04
阅读次数:
174
For与Function进阶实战、Lazy的使用一、for循环的进阶实战Defmain=(args:Array[String]):Unit{For(i<-1to3;j<-3to8)Println((100*i+j)+”")也可在for循环中加入条件表达式:For(i<-1to3;j<-3to8ifi!=j)Println((100*i+j)+”")}定义函数的时候一般函数都有值,函数..
分类:
其他好文 时间:
2015-08-12 14:56:42
阅读次数:
106
package com.leegh.pattern_match/** * @author Guohui Li */object Extractor { def main(args: Array[String]): Unit = { def match_array(arr: Any) = ar...
分类:
其他好文 时间:
2015-08-12 08:57:52
阅读次数:
199
今天学习下list中的ListBuffer实现的高效计算。让我们先来看下代码def main(args:Array[String]){ val list = List(1,2,3,4,5,6,7,8,9) increment(list) increment_MoreEffective(list) ....
分类:
其他好文 时间:
2015-08-12 01:19:03
阅读次数:
123
package com.leegh.pattern_match/** * @author Guohui Li *//** * Type,Array模式匹配 */object Pattern_Match_More { def main(args: Array[String]): Unit = { .....
分类:
其他好文 时间:
2015-08-11 09:43:37
阅读次数:
109
代码:import org.apache.spark.SparkConfimport org.apache.spark.SparkContextimport scala.math.randomobject SparkPi { def main(args:Array[String]){ val con...
分类:
其他好文 时间:
2015-08-09 18:23:33
阅读次数:
116
package com.leegh.function/** * @author Guohui Li */object Curring { def main(args: Array[String]): Unit = { def muliple(x: Int, y: Int) = x * y ...
分类:
其他好文 时间:
2015-08-09 09:27:26
阅读次数:
171
package com.leegh.function/** * @author Guohui Li */object PartiaAppliedFunction { def main(args: Array[String]): Unit = { val data = List(1, 2, 3...
分类:
其他好文 时间:
2015-08-07 22:04:26
阅读次数:
109
package com.leegh.function/** * @author Guohui Li */object ClosureOps { def main(args: Array[String]): Unit = { val data = List(1, 2, 3, 4, 5, 6) ...
分类:
其他好文 时间:
2015-08-06 20:09:02
阅读次数:
116
package com.leegh.function/** * @author Guohui Li */object PartiaAppliedFunction { def main(args: Array[String]): Unit = { val data = List(1, 2, 3...
分类:
其他好文 时间:
2015-08-05 08:51:23
阅读次数:
123