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

來源:互聯網
上載者:User

標籤:

子類繼承父類 要完成父類參數的填充class Person(val name : String ,val age : Int){
println("father‘s constructor")
  val Class = "first class "
  def read = "10 hours"
  override def toString = "I am a goodperson"
}

class Stu(nameStu : String,ageStu : Int,val sex : String) extendsPerson(nameStu,ageStu)
{
  println("son‘s constructor")
  override val Class = "I‘m a student in firstclass"
  override def toString = "I am a good student"
}

object Uni {
  def main(args: Array[String]): Unit = {
     
    val stu =new Stu("stu1",20,"男")
   println(stu.Class)
   println(stu.toString())
    
  }  
}
運行結果
father‘s constructor
son‘s constructor
I‘m a student in first class
I am a good student

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

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

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

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

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

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

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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.