python Scala函數與訪問修辭符實例詳解

常規函數

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

可變參數函數

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

使用名字調用函數

apply()函數接受另一個函數f和值v,並將函數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

匿名函數

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

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

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

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

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

變量mul現在是可以像函數那樣使用的函數 – println(mul(3, 4))

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

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

變量userDir現在是可以像函數那樣使用的函數 – 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
}

以上就是python Scala函數與訪問修辭符實例詳解的詳細內容,更多關於python Scala函數訪問修辭符的資料請關註WalkonNet其它相關文章!

推薦閱讀: