回顾scala基础第4天!!

文件
顾名思义无外乎是读和写操作,
首先我们需要导入包

import scala.io.{BufferedSource, Source}


object FileDemo {

  def main(args: Array[String]): Unit = {
//读取文件
    val sourcefile: BufferedSource = Source.fromFile(Path)
    for(date<- sourcefile.getLines()){
      println(date)
      val strings = date.mkString.split(",")
      for(i<- 0 to strings.length-1){
        println(strings(i))
      }
    }
  }
}

特质(类似于java的接口)
注意的点没有很多,就是在使用的时候被继承的时候
应该显示extend然后是多个with相连接
操作符
一,标识符、
就是平时用的标识符
二,中置操作符
即操作符号在中间的 像什么加减乘除都是中置运算符号
三,一元操作符
只有一个参数的操作符号 类似一 “”.toString “”.split,
四,赋值运算符
常见的就是我们遇到的等号(=)

	scala中 我们一般的符号都是左操作符  除了(:)分号和等号=

你可能感兴趣的:(工具类,项目总结,scala)