scala 安装入门
http://knight-black-bob.iteye.com/blog/2286188
helloworld
package com.baoy.cn.demo object Hello { def main(args: Array[String]){ println("hello world") } }
类对象
package com.baoy.cn.demo trait Equals { def isEqual(x: Any): Boolean def isNotEqual(x: Any): Boolean = !isEqual(x) }
package com.baoy.cn.demo class Student(val name: String, val password: String) extends Equals{ var xname: String = name var xpassword: String = password def toString1(): Unit = { println("Strudent:[name:" + xname + ",password:" + xpassword + "]") } override def toString(): String = { "Strudent:[name:" + xname + ",password:" + xpassword + "]" } def isEqual(obj: Any) ={ obj.isInstanceOf[Student] && obj.asInstanceOf[Student].xname == xname } } object Student { def main(args: Array[String]): Unit = { val stu = new Student("baoyou", "123456") stu.toString1() println(stu.toString()) val stu2 = new Student("baoyou", "1234567") val bool = stu2.isEqual(stu) println(bool) } }
for
package com.baoy.cn.demo class ForDemo { } object ForDemo{ def main(args: Array[String]){ println("-------------------------------- i <- 0 to 9") var result = "" for (i <- 0 to 9) { result += i + " " } println(result) println("-------------------------------- i <- 0 until 10") result = "" for (i <- 0 until 10) { result += i + " " } println(result) println("-------------------------------- i <- Range(0, 10)") result = "" for (i <- Range(0, 10)) { result += i + " " } println(result) println("-------------------------------- i <- Range(0, 20, 2)") result = "" for (i <- Range(0, 20, 2)) { result += i + " " } println(result) } }
vector
package com.baoy.cn.demo class VectorDemo { } object VectorDemo { def main(args: Array[String]) { val v1= Vector(1,2,3,4,5) println(v1) var result = "" for(i <- v1 ){ result += i + " " } println(result) val v2 = v1.reverse println(v2) var v3 = v2.sorted println(v3) } }
collection
package com.baoy.cn.demo class CollectionDemo { } object CollectionDemo { def main(args: Array[String]): Unit = { //1 . List // List of Strings val fruit: List[String] = List( "oranges", "pears","apples") // List of Integers val nums: List[Int] = List(1, 2, 3, 4) // Empty List. val empty: List[Nothing] = List() // Two dimensional list val dim: List[List[Int]] = List( List(1, 0, 0), List(0, 1, 0), List(0, 0, 1)) // List of Strings val fruit2 = "apples" :: ("oranges" :: ("pears" :: Nil)) // List of Integers val nums2 = 1 :: (2 :: (3 :: (4 :: Nil))) // Empty List. val empty2 = Nil // Two dimensional list val dim2 = (1 :: (0 :: (0 :: Nil))) :: (0 :: (1 :: (0 :: Nil))) :: (0 :: (0 :: (1 :: Nil))) :: Nil for( i <- 0 to fruit.length -1 ){ print (fruit.apply(i) + " ") } println() fruit.foreach { x => print(x +" ") } println() println(fruit.contains("oranges")) val it = fruit.toIterator while (it.hasNext) { print(it.next() + " ") } println() println(fruit.mkString(",")) val fruit3 = fruit.sortWith(_.compareTo(_) < 0) fruit3.map { s => print(s + " ") } } }
yield
package com.baoy.cn.demo import scala.collection.immutable.Vector class YieldDemo { } object YieldDemo{ def main(args: Array[String]): Unit = { val v= Vector(1,2,3,4,5,6,7,8,9,10,11,12,13,14,17) val v1 = yielding(v); println(v1) val v2 = evenGT5(v) println(v2) } def yielding( v : Vector[Int] ): Vector[Int] = { val result = for{ n <- v if n < 10 if n %2 != 0 } yield {n} // yield 交出 n result } def evenGT5( v : Vector[Int] ): Vector[Int] = { var result = Vector[Int]() for{ n <- v if n < 10 if n %2 == 0 } result = result :+ n result } }
split
package com.baoy.cn.demo class SplitDemo { def apply(userId:String ,domain:String) = { userId +"@"+ domain } def unapply(str: String): Option[(String, String)] = { val parts = str split "@" if (parts.length == 2){ Some(parts(0), parts(1)) }else{ None } } def show(x: Option[String]) = x match { case Some(s) => s case None => "?" } } object SplitDemo{ def main(args: Array[String]): Unit = { val sd = new SplitDemo().apply("curiousby","163.com") val sdd = new SplitDemo().unapply(sd) println(sdd.isEmpty) val it = sdd.iterator while (it.hasNext){ println(it.next()._1) } /* val n = sdd.map{ n => n } println(n)*/ println( Some("1","2","3","4","5").iterator.next()._5) } }
map reduce foreach
package com.baoy.cn.demo import scala.collection.immutable.Vector object MapReduceForeachDemo { def main(args: Array[String]): Unit = { val v =Vector(1,2,3,4) println(v) val v2 = v.map{ n => n+1 } println(v2) var sum =0 v2.foreach(x => sum += x) println(sum) val sum2 = v2.reduce((sum2,n) => sum + n) println(sum) } } class MapReduceForeachDemo{ }
regex
package com.baoy.cn.demo import scala.util.matching.Regex class RegexDemo { } object RegexDemo{ def main(args: Array[String]): Unit = { val pattern = new Regex("(S|s)cala") val str = "Scala is scalable and cool" var string = pattern findFirstIn str println(string ) var string2 = pattern findAllIn str println(string2) var string3 =string2.mkString(",") println(string3) } }
File
package com.baoy.cn.demo import scala.io.Source import java.io.PrintWriter import java.io.File class FileDemo { } object FileDemo { def main(args: Array[String]): Unit = { val wstr = Console.readLine() //println(wstr) val writer = new PrintWriter(new File("C:\\Users\\cmcc-B100036\\Desktop\\test.txt")) writer.write(wstr) writer.close() Source.fromFile("C:\\Users\\cmcc-B100036\\Desktop\\test.txt").foreach { print } } }
abstract
package com.baoy.cn.mabstract abstract class Cat { def color():Unit } object Cat{ def main(args: Array[String]): Unit = { val cat1 = new Garfield() val cat2 = new Doraemon() cat1.color() cat2.color() } } package com.baoy.cn.mabstract class Doraemon extends Cat{ def color():Unit={ print("blue") } } package com.baoy.cn.mabstract class Garfield extends Cat{ def color():Unit = { println("brown") } }
enumeration
package com.baoy.cn.demo class Level{ } object Level extends Enumeration{ type Level = Value val overflow ,high,medium,low,empty = Value def main(args: Array[String]): Unit = { val v = { for(n <- Range(0,Level.maxId)) yield (n,Level(n)) } println(v) checkLevel(overflow) val v2= { for(lev <- Level.values) yield lev } print(v2.toIndexedSeq) } def checkLevel(level:Level)= level match { case overflow => println("overflow --- ") case high => println("high --- ") case medium => println("medium --- ") case low => println("low --- ") case empty => println("empty --- ") } }
scala 隐式转换
package com.baoy.cn.demo class Implicit{ } class A{ def a{ println("so a......") } } class RichA(a:A){ def rich{ println("so rich......") } } object Implicit { def main(args: Array[String]): Unit = { implicit def a2RichA(a: A) = new RichA(a) val a = new A a.rich a.a val b = new RichA( new A) b.rich def testParam(implicit name: String){ println(name) } implicit val name = "implicited" testParam } }
捐助开发者
在兴趣的驱动下,写一个免费
的东西,有欣喜,也还有汗水,希望你喜欢我的作品,同时也能支持一下。 当然,有钱捧个钱场(右上角的爱心标志,支持支付宝和PayPal捐助),没钱捧个人场,谢谢各位。
谢谢您的赞助,我会做的更好!
相关推荐
Scala是一种多范式编程语言,结合了面向对象编程和函数式编程的特点,旨在为程序员提供一种简洁、高效的方式来编写程序。它构建在Java平台之上,兼容现有的Java程序,但比Java更简洁和强大。Scala代码通常编译成Java...
1. **Scala基础** - **基本语法**:Scala的基础语法与Java类似,但更简洁。包括变量声明(val和var)、常量、数据类型(如Int、Double、String等)以及表达式和语句。 - **类和对象**:Scala中的类和对象是面向...
scala基础文档,专门为计算而生的语言,Scala将(Java后者C++)面向对象设计和 函数式编程 结合在一起的简洁的高级编程语言。而 函数式编程强调的是通过传递算子(代码|函数)实现大规模数据集的本地计算。Scala虽然是...
Scala编程入门教材旨在引导初学者踏入Scala这一强大且多用途的编程语言的世界。Scala结合了面向对象编程(OOP)和函数式编程(FP)的特性,为开发者提供了丰富的工具来构建高效、可扩展的软件系统。以下是Scala编程...
11.列表的常用操作之基础操作 12.列表的常用操作之扁平化 13.列表的常用操作之拉链与拉开 14.列表的常用操作之转换字符串 15.列表的常用操作之求并集,交集,差集 16.创建不可变集 17.不可变集的常见操作 18....
Scala简介&快速入门 基础语法 变量 数据类型 流程控制 操作符重载 模式匹配 函数式编程基础 函数式编程说明 函数定义/声明 函数运行机制 递归 函数注意事项和细节 过程 惰性函数和异常 面向对象编程初级...
Scala语言的上述特点和学习动机,以及必要的环境配置和基础语法,是初学者入门Scala的基石。对于有一定Java基础的人来说,Scala能够提供更加高效和简洁的编程体验,尤其在处理大规模数据处理和复杂系统开发时显示出...
### Scala语言入门知识点详解 #### 一、Scala简介 Scala是一种多范式的编程语言,它融合了面向对象编程和函数式编程的特点。Scala语言的设计旨在提高代码的可读性和表达能力,同时保持高性能。Scala运行在Java平台...
Scala是一门多范式编程语言,它结合了面向对象编程(OOP)和函数式编程(FP)的最佳特性。Scala运行在Java虚拟机(JVM)之上,这意味着它可以无缝地调用Java类库,并与Java代码进行交互。Scala的设计目的是简化编程任务,...
一、Scala基础 1. 类与对象:Scala是面向对象的语言,所有数据都是对象。类是创建对象的模板,通过`class`关键字定义。对象则是类的实例,可以通过`new`关键字创建。 2. 函数:Scala支持高阶函数,可以将函数作为...
Scala基础** - **数据类型**:Scala支持基本的数据类型如Int、Double、Boolean等,以及更复杂的类型如String、Array、List、Map等。 - **变量与常量**:使用`var`声明可变变量,`val`声明不可变常量。Scala鼓励...
在本教程中,我们将深入探讨Scala的基础知识,帮助你快速入门。 "Scala编程中文版"这份教程可能涵盖了以下内容: 1. **基础语法**:包括变量声明、数据类型(如基本类型、引用类型、集合)、操作符和控制结构(如...
1. **Scala基础** - 类与对象:Scala中的所有数据都是对象,类是创建对象的模板。它支持单例对象和伴生对象,这为设计模式提供了简洁的实现。 - 函数:Scala将函数视为一等公民,可以作为变量赋值、作为参数传递和...
第一部分:"Scala入门及进阶-part01-基础知识.pdf" 涵盖了Scala的基础概念。在这里,你会学习到Scala的安装与环境配置,理解Scala的基本语法,包括变量声明、数据类型(如基本类型、引用类型和集合类型)、控制结构...
【大数据课程-Scala编程基础-1.Scala语言初识】是针对初学者设计的一门课程,旨在教授如何入门Scala编程,特别适合已有Java基础的学员。Scala是一种在2001年由洛桑联邦理工学院(EPFL)的编程方法实验室研发的语言,...
【课程大纲】第1讲-Spark的前世今生第2讲-课程介绍、特色与价值第3讲-Scala编程:基础语法第4讲-Scala编程:条件控制与循环第5讲-Scala编程:函数入门第6讲-Scala编程:函数入门之默认参数和带名参数第7讲-Scala编程...
#### 四、Scala基础语法 - **Class**: 类的定义与Java类似,用于封装数据和行为。 ```scala class MyClass { def helloWorld = println("Hello, Scala!") } ``` - **Object**: 用于定义单例对象,相当于Java...
· Scala基础入门 · 函数式编程 · 数据结构 · 面向对象编程 · 模式匹配 · 高阶函数 · 特质 · 注解&类型参数 · 隐式转换 · 高级类型 · 案例实操 Spark Core · 安装部署 · RDD概述 · 编程...