從大數據菜鳥走上大師的歷程 Scala 第十講 apply

apply object中可直接引用 對象中的apply方法 class中apply 由類的對象引用
實例以下 :
class TestOne
{
 html

def apply() = {println("TestOne class apply method ")}
  def sayHello()
  {
    println("scala class sayHello ")
  }
}

object TestOne
{
  def apply() = {println("TestOne object apply method ")}
  new TestOne
}

object TestSingle {
  def main(args: Array[String]) = {
   
    val test = TestOne.apply()
    println(test)               // TestOne object apply method()

    val test1 = new TestOne()
    println(test1())            //TestOne class apply method()
  }
}

如今正是學習大數據的最好機遇,不花一分錢就能夠成爲大數據高手,實現年薪50萬的夢想。微信

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

若是您有興趣請點擊這個連接進入大數據的學習學習

http://blog.sina.com.cn/s/blog_8fbd39ee0102vto3.html大數據

若是您確實感受視頻教程有幫助,您能夠經過王家林老師的微信號18610086859發紅包捐助大數據、互聯網+、O2O、工業4.0、微營銷、移動互聯網等系列免費實戰課程scala

您也能夠經過如下二維碼關注 DT大數據夢工廠視頻

相關文章
相關標籤/搜索