Scala实践6
1 if表达式
- Scala中if...else..表达式是有返回值的,如果if和else返回值类型不一样,则返回Any类型。
scala> val a3=10
a3: Int = 10 scala> val a4=
| if(a3>20){
| "a3大于a4"
| }else{
| "a4大于a3"
| }
a4: String = a4大于a3 scala> val a5=
| if(a3>20)"a3大于20"
a5: Any = () scala> println(a5)
()
2 while表达式
- while循环
scala> def gcdLoop(x:Long,y:Long):Long={
| var a=x
| var b=y
| while(a!=0){
| val temp=a
| a=b%a
| b=temp
| }
| b
| }
gcdLoop: (x: Long, y: Long)Long scala> gcdLoop(8,9)
res0: Long = 1 scala> gcdLoop(8,4)
res1: Long = 4
- while循环的中断
import scala.util.control.Breaks
object whilexample {
def main(args:Array[String]): Unit ={
var n=1;
val loop=new Breaks
loop.breakable{
while(n<=20){
n+=1;
if(n==19){
loop.break()
}
}
}
println(n)
}
}
结果如下:
3 for表达式
- for中to示例:
scala> for(i <- 1 to 3; j <- 1 to 3){
| print(i * j + " ")
| }
1 2 3 2 4 6 3 6 9
- for中until示例:
scala> for(i <- 1 until 3; j <- 1 until 3) {
| print(i * j + " ")
| }
1 2 2 4
- for中的条件判断示例
scala> for(i <- 1 to 3 if i != 2) {
| print(i+" ")
| }
1 3
scala>
- for中的引入变量
scala> for(i <- 1 to 3; j = 4 - i) {
| print(j+" ")
| }
3 2 1
- 使用yield关键字,将遍历过程处理结果返回一个值。
scala> val for5 = for(i <- 1 to 10) yield i
for5: scala.collection.immutable.IndexedSeq[Int] = Vector(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) scala> print(for5)
Vector(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
scala> val for5 = for(i <- 1 to 10)
| print(for5)
<console>:13: error: recursive value for5 needs type
print(for5)
^
- 过滤,通过for中的() 添加过滤器(filter),就是if子句。
object hello{
def main(args:Array[String]){
val filesHere=(new java.io.File(".")).listFiles
for(file<-filesHere if(file.getName.endsWith(".scala")))
println(file)
}} D:\>scala hello.scala
.\a.scala
.\h.scala
.\hello.scala
.\s.scala
4 try表达式
- 抛出异常
scala> def ha(n:Int){
| val half=if(n%2==0) print(n/2)
| else
| throw new RuntimeException("n num be even")
| }
ha: (n: Int)Unit scala> ha(7)
java.lang.RuntimeException: n num be even
at .ha(<console>:14)
... 28 elided scala> ha(8)
4
- 捕获异常
捕获异常的语法选择catch子句的原因是与模式匹配保持一致。
object ExceptionSyllabus {
def divider(x: Int, y: Int): Float= {
if(y == 0) throw new Exception("0作为了除数")
else x / y
}
def main(args: Array[String]): Unit = {
try {
println(divider(10, 3))
} catch {
case ex: Exception => println("捕获了异常:" + ex)
} finally {}
}
} D:\>scala ExceptionSyllabus.scala
3.0 //当数字改为(10,0)后
D:\>scala ExceptionSyllabus.scala
捕获了异常:java.lang.Exception: 0作为了除数
5 匹配表达式
- Scala中的match表达式类似于其它语言的switch语句,它可用提供多个备选项做选择。
object frist{
def main(args:Array[String]){
val firstArg=if(args.length>0)args(0) else ""
firstArg match{
case "salt"=>println("papper")
case "chips"=>println("salsa")
case "eggs"=>println("bacon")
case _=>println("huh?")
}
}
} D:\>scala frist.scala
huh? D:\>scala frist.scala salt
papper
6 lazy懒值
- 当val被声明为lazy时,初始化将被推迟,直到我们首次对此取值,适用于初始化开销较大的场景。 通过lazy关键字的使用与否,来观察执行过程
object Lazy {
def init(): String = {
println("init方法执行")
"嘿嘿嘿,我来了~"
}
def main(args: Array[String]): Unit = {
lazy val msg = init()
println("lazy方法没有执行")
println(msg)
}
}
结果:
object Lazy {
def init(): String = {
println("init方法执行")
"嘿嘿嘿,我来了~"
}
def main(args: Array[String]): Unit = {
val msg = init()
println("lazy方法没有执行")
println(msg)
}
}
结果:
7 柯里化
在函数编程中,将接受多个参数的函数转化为接受单个参数的函数。这一过程称为柯里化
scala> def mul(x: Int, y: Int) = x * y
mul: (x: Int, y: Int)Int scala> println(mul(10, 10))
100 scala> def mulCurry(x: Int) = (y: Int) => x * y
mulCurry: (x: Int)Int => Int scala> println(mulCurry(10)(9))
90 scala> def mulCurry2(x: Int)(y:Int) = x * y
mulCurry2: (x: Int)(y: Int)Int scala> println(mulCurry2(10)(8))
80
- 柯里化的应用:在忽略大小写的情况下,计较是否相等。
scala> val a = Array("Hello", "World")
a: Array[String] = Array(Hello, World) scala> val b = Array("hello", "world")
b: Array[String] = Array(hello, world) scala> println(a.corresponds(b)(_.equalsIgnoreCase(_)))
true
Scala实践6的更多相关文章
- Scala实践14
1.Scala的future 创建future import scala.concurrent._ import ExecutionContext.Implicits.global object Fu ...
- Scala实践13
1.隐式参数 方法可以具有隐式参数列表,由参数列表开头的implicit关键字标记.如果该参数列表中的参数没有像往常一样传递,Scala将查看它是否可以获得正确类型的隐式值,如果可以,则自动传递. S ...
- Scala实践12
1.内部类和抽象类型成员作为对象成员 内部类 在Scala中,可以让类将其他类作为成员.这些内部类是封闭类的成员.在Scala中,这样的内部类绑定到外部对象.假设希望编译器在编译时阻止我们混合哪些节点 ...
- Scala实践11
1.1泛型类 泛型类是将类型作为参数的类.它们对集合类特别有用. 定义泛类型:泛型类将类型作为方括号内的参数[].一种惯例是使用字母A作为类型参数标识符,但是可以使用任何参数名称. class Sta ...
- Scala实践10
1.模式匹配 模式匹配是一种根据模式检查值的机制.它是switch(Java中语句)的更强大版本,它同样可以用来代替一系列if / else语句. 句法 匹配表达式具有值,match关键字和至少一个c ...
- Scala实践9
1.特征 Traits用于在类之间共享接口和字段.它们类似于Java 8的接口.类和对象可以扩展特征,但是特征不能被实例化,因此没有参数. 定义一个特征 最小特征只是关键字trait和标识符: tra ...
- Scala实践8
1.1继承类 使用extends关键字,在定义中给出子类需要而超类没有的字段和方法,或者重写超类的方法. class Person { var name = "zhangsan" ...
- Scala实践7
一.类 1.1简单类和无参方法 类的定义通过class关键字实现 scala> class Dog { | private var leg = 4 | def shout(content: St ...
- Scala实践5
一.Scala的层级 1.1类层级 Scala中,Any是所其他类的超类,在底端定义了一些有趣的类NULL和Nothing,是所有其他类的子类. 根类Any有两个子类:AnyVal和AnyRef.其中 ...
随机推荐
- 评分模型的检验方法和标准通常有:K-S指标、交换曲线、AR值、Gini数等。例如,K-S指标是用来衡量验证结果是否优于期望值,具体标准为:如果K-S大于40%,模型具有较好的预测功能,发展的模型具有成功的应用价值。K-S值越大,表示评分模型能够将“好客户”、“坏客户”区分开来的程度越大。
评分模型的检验方法和标准通常有:K-S指标.交换曲线.AR值.Gini数等.例如,K-S指标是用来衡量验证结果是否优于期望值,具体标准为:如果K-S大于40%,模型具有较好的预测功能,发展的模型具有成 ...
- Python--day40--主线程和子线程代码讲解
1,最简单的线程例子: 2,多线程并发: import time from threading import Thread #多线程并发 def func(n): time.sleep(1) prin ...
- P1103 走迷宫三
题目描述 大魔王抓住了爱丽丝,将她丢进了一口枯井中,并堵住了井口. 爱丽丝在井底发现了一张地图,他发现他现在身处一个迷宫当中,从地图中可以发现,迷宫是一个N*M的矩形,爱丽丝身处迷宫的左上角,唯一的出 ...
- MAMP "403 Forbidden You don't have permission to access / on this server."
2015年01月22日 17:27:31 阅读数:3488 用MAMP搭建本地服务器的时候,设置好ip和端口等属性之后,浏览器访问,报 403错误: Forbidden You don't have ...
- npm install 报错(npm ERR! errno -4048,Error: EPERM: operation not permitted)
问题现象 原因 1.初次看报错日志内容,定义权限为问题,后来查资料才知道是缓存问题. 解决方法 1.简单直接 直接删除 npmrc文件 tips: 不是nodejs安装目录npm模块下的那个npmrc ...
- 常用mime.types
以下是从nginx配置文件mime.types中提取出的最常用的文件格式, 整理了下, 方便查看 类型 文件格式 default_type application/octet-stream - tex ...
- vue-element Tree树形控件通过id默认选中
一.设置 1.给树形控件设置 ref="tree" node-key="id" 2.在获取数据的位置加上 this.$nextTick(() => { t ...
- git 安装及基本配置
git 基本上来说是开发者必备工具了,在服务器里没有 git 实在不太能说得过去.何况,没有 git 的话,面向github编程 从何说起,如同一个程序员断了左膀右臂. 你对流程熟悉后,只需要一分钟便 ...
- tab选项卡平滑滚动vue
<html lang="en"> <head> <meta charset="UTF-8"> <title>Ti ...
- Linux 内核总线注册
如同我们提过的, 例子源码包含一个虚拟总线实现称为 lddbus. 这个总线建立它的 bus_type 结构, 如下: struct bus_type ldd_bus_type = { .name = ...