view bound:必须传入一个隐式转换函数

class [T <% Ordered [T]]

content bound:必须传入一个隐式值

class [T : Ordering]

!异步发送消息

!? 同步发送消息,等待反馈信息

!!异步发送完成之后,返回一个future引用

scala列表操作符::把心元素整合到现有列表的最前端

scala里面Map 有2个特质:scala.collection.mutable 可变Map

scala.collection.immutable 不可变Map

scala 中如果一行开头用"""  表示开始 , 结尾用""" 表示结束

操作符和操作方法:

1+2 与(1).+(2) 表达的效果是一样

val  s = "Hellon Word".toLowerCase   输出结果:hello word

for {句子} yield {循环体}

暂位符语法: _ > 0  坚持值是否大于 0

val f = (_: Int) +(_ : Int)

val b = sum(1, _: Int, 3) b(2) 输出结果 6

闭包减少代码

 private def fileHere = new File(".").listFiles()
def fileEnding(query: String) = {
for (file <- fileHere; if file.getName.endsWith(query))
yield file
} def fileContaining(query: String){
for (file <- fileHere; if file.getName.concat(query))
yield file
} def filesRegex(query: String): Unit = {
for (file <- fileHere; if file.getName.matches(query))
yield file
} def fileMatching(query: String, matcher: (String, String) => Boolean){
for (file <- fileHere; if matcher(file.getName, query))
yield file
}

优化后的结果:

一个方法之只要没有实现(即没有等号或者方法体) 它就是抽象的

具体(concrete)

多态动态绑定:

样本类和模式匹配:case class name 方便调用

abstract  class CaseClass {
case class Var(name: String) extends CaseClass
case class Number(num: Double) extends CaseClass
case class UnOp(operator: String, args: CaseClass) extends CaseClass
case class BinOp(operator: String, left: CaseClass, right: CaseClass) extends CaseClass def caseTest(){
val v = Val("x")
} def simplifyTop(cass: CaseClass) :CaseClass = cass match{
case UnOp("-",UnOp("-",e)) => e
case BinOp("+", e, Number(0)) => e
case BinOp("*", e, Number(0)) => e
case _ => cass
// 选择器 match {备选项}
//的一个参数匹配“-”,第二个参数匹配e的值 //通配匹配
expr match{
case BinOp(op, left, right) =>
println(expr + "is a binarry operation")
case _ =>
}
expr match {
case BinOp(_,_,_) => println(expr + "is a birarry operation")
case _ => println("is something else ")
}
}

匹配固定长度序列模式

匹配任意长度序列模式

带有元组模式的匹配

类型模式匹配:

修改前:

class Person(var firstName: String, var secondName: String, var age: Int){

    def getFirstName = firstName
def getSecondName = secondName
def GetAge = age def setFirstName(value:String):Unit = firstName = value
def setLastName(value:String) = secondName = value
def setAge(value:Int) = age = value override def toString =
"[Person firstName:" + firstName + " lastName:" + secondName +
" age:" + age + " ]" }

添加BeanProperty 后

如果在代码中加入 @scala.reflect.BeanProperty 就是相当于设置了get/set 方法

   class Person(fn:String, ln:String, a:Int)
{
@scala.reflect.BeanProperty
var firstName = fn @scala.reflect.BeanProperty
var lastName = ln @scala.reflect.BeanProperty
var age = a override def toString =
"[Person firstName:" + firstName + " lastName:" + lastName +
" age:" + age + " ]"
}

读取文件信息

  def findFileName(): Unit ={
val fileName = (new java.io.File(".")).listFiles()
for {
files <- fileName
if files.listFiles()
if files.getName.endsWith("scala")
}System.out.print("file"+ files)
}

列表:参见List列表http://www.cnblogs.com/zhanggl/p/4984512.html

scala 基础笔记的更多相关文章

  1. Scala学习笔记(一)编程基础

    强烈推荐参考该课程:http://www.runoob.com/scala/scala-tutorial.html 1.   Scala概述 1.1.  什么是Scala Scala是一种多范式的编程 ...

  2. Scala学习笔记及与Java不同之处总结-从Java开发者角度

    Scala与Java具有很多相似之处,但又有很多不同.这里主要从一个Java开发者的角度,总结在使用Scala的过程中所面临的一些思维转变. 这里仅仅是总结了部分两种语言在开发过程中的不同,以后会陆续 ...

  3. Scala编程 笔记

    date: 2019-08-07 11:15:00 updated: 2019-11-25 20:00:00 Scala编程 笔记 1. makeRDD 和 parallelize 生成 RDD de ...

  4. Java基础笔记 – Annotation注解的介绍和使用 自定义注解

    Java基础笔记 – Annotation注解的介绍和使用 自定义注解 本文由arthinking发表于5年前 | Java基础 | 评论数 7 |  被围观 25,969 views+ 1.Anno ...

  5. php代码审计基础笔记

    出处: 九零SEC连接:http://forum.90sec.org/forum.php?mod=viewthread&tid=8059 --------------------------- ...

  6. MYSQL基础笔记(六)- 数据类型一

    数据类型(列类型) 所谓数据烈性,就是对数据进行统一的分类.从系统角度出发时为了能够使用统一的方式进行管理,更好的利用有限的空间. SQL中讲数据类型分成三大类:1.数值类型,2.字符串类型和时间日期 ...

  7. MYSQL基础笔记(五)- 练习作业:站点统计练习

    作业:站点统计 1.将用户的访问信息记录到文件中,独占一行,记录IP地址 <?php //站点统计 header('Content-type:text/html;charset=utf-8'); ...

  8. MYSQL基础笔记(四)-数据基本操作

    数据操作 新增数据:两种方案. 1.方案一,给全表字段插入数据,不需要指定字段列表,要求数据的值出现的顺序必须与表中设计的字段出现的顺序一致.凡是非数值数据,到需要使用引号(建议使用单引号)包裹. i ...

  9. MYSQL基础笔记(三)-表操作基础

    数据表的操作 表与字段是密不可分的. 新增数据表 Create table [if not exists] 表名( 字段名 数据类型, 字段名 数据类型, 字段n 数据类型 --最后一行不需要加逗号 ...

随机推荐

  1. JavaScript中 函数的创建和调用

    基础概念:定义函数的方式   一般定义函数有两种方式:    1:函数的声明    2:函数表达式 参考资料:https://blog.csdn.net/xixiruyiruyi/article/de ...

  2. docker内的服务无法获取用户真实IP

    原文:blog.baohaipeng.top 背景:MySQL数据库和Redis运行在宿主机上(Linux),server运行在docker内,web运行在Nginx内(Nginx运行在docker内 ...

  3. linux python3换pip 源

    linux下python3 pip 安装模块 # python3 -m pip  install pymysql 1)检查pip.conf文件是否存在    >> cd ~    > ...

  4. CSS3新增(选择器{属性选择器,结构伪类选择器,伪元素选择器})

    1.属性选择器 属性选择器,可以根据元素特定的属性来选择元素,这样就不用借助 类 或者 id选择器. E [ att ]   选择具有 att 属性的 E 元素   例如:input [ value ...

  5. LeetCode Arrary Easy 35. Search Insert Position 题解

    Description Given a sorted array and a target value, return the index if the target is found. If not ...

  6. 解决码云未配置公钥问题——fatal: Could not read from remote repository.

    使用码云,键入“git push -u origin master” ,遇到如下问题: fatal: Could not read from remote repository.(致命:不能读远端仓库 ...

  7. 2018-2-13-win10-uwp-资源字典

    title author date CreateTime categories win10 uwp 资源字典 lindexi 2018-2-13 17:23:3 +0800 2018-2-13 17: ...

  8. 删除DataFrame中特定条件的行/列

    在<Python进行数据分析与挖掘实战>一书中,第10章 删除热水器不工作的数据(水流量为0并且开关机状态为“关”的数据.) import pandas as pd data=pd.rea ...

  9. STM32三种BOOT模式介绍

    一.三种BOOT模式介绍 所谓启动,一般来说就是指我们下好程序后,重启芯片时,SYSCLK的第4个上升沿,BOOT引脚的值将被锁存.用户可以通过设置BOOT1和BOOT0引脚的状态,来选择在复位后的启 ...

  10. 微信小程序 滚动到底部

    1.html <view id="bottom"></view> 2. onReady: function () { //滚动到底部 let query = ...