Scala中的Trait方法

版权声明:未经允许,随意转载,请附上本文链接谢谢(づ ̄3 ̄)づ╭❤~
https://blog.csdn.net/xiaoduan_/article/details/80983658

Scala中的Trait方法

Scala Trait(特征) 相当于 Java 的接口,实际上它比接口还功能强大。

与接口不同的是,它还可以定义属性和方法的实现。

一般情况下Scala的类只能够继承单一父类,但是如果是 Trait(特征) 的话就可以继承多个,从结果来看就是实现了多重继承。

Trait(特征) 定义的方式与类类似,但它使用的关键字是 trait,如下所示:

package com.anthony

/**
  * @ Description:
  * @ Date: Created in 10:41 10/07/2018
  * @ Author: Anthony_Duan
  */
object trait_test {
  def main(args: Array[String]): Unit = {
    val flyFish = new FlyFish
    flyFish.eat
    flyFish.fly
    flyFish.swim
  }

}

trait Flyable{
  def fly
  def eat = println(" i can eat")
}

trait swimable{
  def swim
}

class FlyFish extends Flyable with swimable {
  override def fly: Unit = {
    println("i can fly")
  }

  override def swim: Unit = {
    println(" i can swim")
  }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值