第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

了解Scala中的隱式

了解Scala中的隱式

我正在通過Scala Playframework教程學(xué)習(xí)時(shí),遇到了讓我感到困惑的這段代碼:def newTask = Action { implicit request =>taskForm.bindFromRequest.fold(        errors => BadRequest(views.html.index(Task.all(), errors)),        label => {          Task.create(label)          Redirect(routes.Application.tasks())        }   )}因此,我決定進(jìn)行調(diào)查并發(fā)現(xiàn)這篇文章。我還是不明白。這有什么區(qū)別:implicit def double2Int(d : Double) : Int = d.toInt和def double2IntNonImplicit(d : Double) : Int = d.toInt除了顯而易見的事實(shí),它們具有不同的方法名稱。我implicit什么時(shí)候應(yīng)該使用,為什么?
查看完整描述

3 回答

?
郎朗坤

TA貢獻(xiàn)1921條經(jīng)驗(yàn) 獲得超9個(gè)贊

明智地包含諷刺!YMMV ...


路易吉的答案是完整而正確的。這只是通過舉例說明如何光榮地過度使用隱式實(shí)例來擴(kuò)展它,因?yàn)樗赟cala項(xiàng)目中經(jīng)常發(fā)生。實(shí)際上,您經(jīng)常甚至可以在“最佳實(shí)踐”指南之一中找到它。


object HelloWorld {

  case class Text(content: String)

  case class Prefix(text: String)


  implicit def String2Text(content: String)(implicit prefix: Prefix) = {

    Text(prefix.text + " " + content)

  }


  def printText(text: Text): Unit = {

    println(text.content)

  }


  def main(args: Array[String]): Unit = {

    printText("World!")

  }


  // Best to hide this line somewhere below a pile of completely unrelated code.

  // Better yet, import its package from another distant place.

  implicit val prefixLOL = Prefix("Hello")

}


查看完整回答
反對(duì) 回復(fù) 2019-11-04
  • 3 回答
  • 0 關(guān)注
  • 494 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)