溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python?Scala函數(shù)與訪問修辭符怎么使用

發(fā)布時間:2022-08-03 16:13:16 來源:億速云 閱讀:134 作者:iii 欄目:開發(fā)技術(shù)

這篇“python Scala函數(shù)與訪問修辭符怎么使用”文章的知識點大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“python Scala函數(shù)與訪問修辭符怎么使用”文章吧。

常規(guī)函數(shù)

object Demo {
   def main(args: Array[String]) {
      println( "Returned Value : " + addInt(5,7) );     // 普通調(diào)用
      println( "Returned Value : " + addInt(a=5,b=7) ); // 指定參數(shù)調(diào)用
   }
   // 方法 默認參數(shù) b = 7
   def addInt( a:Int, b:Int = 7 ) : Int = {
      var sum:Int = 0
      sum = a + b
      return sum
   }
}

可變參數(shù)函數(shù)

object Demo {
   def main(args: Array[String]) {
      printStrings("Hello", "Scala", "Python"); // 可變參數(shù)
   }
   def printStrings( args:String* ) = {
      var i : Int = 0;
      for( arg <- args ){
         println("Arg value[" + i + "] = " + arg );
         i = i + 1;
      }
   }
}

使用名字調(diào)用函數(shù)

apply()函數(shù)接受另一個函數(shù)f和值v,并將函數(shù)f應用于v。

object Demo {
   def main(args: Array[String]) {
      println( apply( layout, 10) )
   }
   def apply(f: Int => String, v: Int) = f(v)
   def layout[A](x: A) = "[" + x.toString() + "]"
}
// $ scalac Demo.scala
// $ scala Demo

匿名函數(shù)

Scala支持一級函數(shù),函數(shù)可以用函數(shù)文字語法表達,即(x:Int)=> x + 1,該函數(shù)可以由一個叫作函數(shù)值的對象來表示。 嘗試以下表達式,它為整數(shù)創(chuàng)建一個后繼函數(shù) -

var inc = (x:Int) => x+1

變量inc現(xiàn)在是一種可以像函數(shù)那樣使用的函數(shù) - var x = inc(7)-1

還可以如下定義具有多個參數(shù)的函數(shù):

var mul = (x: Int, y: Int) => x*y

變量mul現(xiàn)在是可以像函數(shù)那樣使用的函數(shù) - println(mul(3, 4))

也可以定義不帶參數(shù)的函數(shù),如下所示:

var userDir = () => { System.getProperty("user.dir") }

變量userDir現(xiàn)在是可以像函數(shù)那樣使用的函數(shù) - println( userDir )

訪問修飾符

class Outer {
   class Inner {
      private def f1() { println("f") }
      protected def f2() { println("f") }
      def f3() { println("f") }
      # 保護作用域Scala中的訪問修飾符可以通過限定符進行擴充。形式為private [X]或protected [X]的修飾符表示為訪問是私有或受保護的“最多”到X,其中X指定一些封閉的包,類或單例對象。
      private[professional] var workDetails = null
      private[society] var friends = null
      private[this] var secrets = null
      class InnerMost {
         f() // OK
      }
   }
   (new Inner).f() // Error: f is not accessible
}

以上就是關(guān)于“python Scala函數(shù)與訪問修辭符怎么使用”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI