特质->self type:this

来源:互联网 发布:隔音好的耳机推荐知乎 编辑:程序博客网 时间:2024/06/05 18:03
 trait Buffering {   this: FileInputStream =>   val b = new BufferedInputStream(this)   override def read(ab: Array[Byte]): Int = {     b.read(ab)   } } val b = new FileInputStream("c:/ObjectTest.obj") with Buffering val ab = new Array[Byte](10) while(b.read(ab) != -1) {  ab.foreach(a => print(a.toChar))}
原创粉丝点击