從大資料菜鳥走上大師的曆程 Scala 第十二講 trait

來源:互聯網
上載者:User

標籤:

trait 類似於Java 中的Interface 但有差別 trait可以繼承trait並且在trait 可以寫抽象的方法,也可以具體實現方法 執行個體如下
trait Walk
{
 

def walk(){}
}
class person extends Walk
{
  println("hello -----")
  override def walk(){println("Let‘s have a walk")}
}
trait Run extends Walk
{
  def run()
  {
    println("gofor a walk and run around ")
  }
}
object HelloTrait {
  def main(args: Array[String]): Unit = {
    val tt = newperson with Run
   tt.run()  
  }
}
列印結果 :
hello -----
go for a walk and run around

現在正是學習大資料的最好機遇,不花一分錢就可以成為大資料高手,實現年薪50萬的夢想。

王家林的第一個中國夢:免費為全社會培養100萬名優秀的大資料從業人員!

如果您有興趣請點擊這個連結進入大資料的學習

http://blog.sina.com.cn/s/blog_8fbd39ee0102vto3.html

如果您確實感覺視頻教程有協助,您可以通過王家林老師的號18610086859發紅包捐助大資料、互連網+、O2O、工業4.0、微營銷、移動互連網等系列免費實戰課程

您也可以通過以下二維碼關注 DT大資料夢工廠

從大資料菜鳥走上大師的曆程 Scala 第十二講 trait

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.