码迷,mamicode.com
首页 >  
搜索关键字:array_to_string    ( 419个结果
scala-04For与Function进阶实战、Lazy的使用
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
scala-04For与Function进阶实战、Lazy的使用
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
Scala提取器Extractor实战详解之Scala学习笔记-19
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
第82讲:Scala中List的ListBuffer是如何实现高效的遍历计算的?
今天学习下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
Type、Array、List、Tuple模式匹配实战解析之Scala学习笔记-18
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
spark实例2--sparkPi
代码: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
Scala中Curring实战详解之Scala学习笔记-16
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
Scala学习笔记-14
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
Scala学习笔记-13
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
Scala学习笔记-12
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
419条   上一页 1 ... 30 31 32 33 34 ... 42 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!