中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

scala默認參數值是什么

發布時間:2021-12-08 15:07:46 來源:億速云 閱讀:145 作者:iii 欄目:大數據

這篇文章主要介紹“scala默認參數值是什么”,在日常操作中,相信很多人在scala默認參數值是什么問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”scala默認參數值是什么”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

Scala具備給參數提供默認值的能力,這樣調用者就可以忽略這些具有默認值的參數。

這個在spark的源碼里隨處可見,比如rdd的sample函數:

 /**   * Return a sampled subset of this RDD.   *   * @param withReplacement can elements be sampled multiple times (replaced when sampled out)   * @param fraction expected size of the sample as a fraction of this RDD's size   *  without replacement: probability that each element is chosen; fraction must be [0, 1]   *  with replacement: expected number of times each element is chosen; fraction must be greater   *  than or equal to 0   * @param seed seed for the random number generator   *   * @note This is NOT guaranteed to provide exactly the fraction of the count   * of the given [[RDD]].   */  def sample(      withReplacement: Boolean,      fraction: Double,      seed: Long = Utils.random.nextLong): RDD[T] = {    require(fraction >= 0,      s"Fraction must be nonnegative, but got ${fraction}")
   withScope {      require(fraction >= 0.0, "Negative fraction value: " + fraction)      if (withReplacement) {        new PartitionwiseSampledRDD[T, T](this, new PoissonSampler[T](fraction), true, seed)      } else {        new PartitionwiseSampledRDD[T, T](this, new BernoulliSampler[T](fraction), true, seed)      }    }  }

定義一個參數帶默認值的函數,很簡單,我們可以仿照上面的spark 源碼中的案例:

def log(message: String, level: String = "INFO") = println(s"$level: $message")
log("System starting")  log("User not found", "WARNING")  

上面的參數level有默認值,所以是可選的。最后一行中傳入的參數"WARNING"重寫了默認值"INFO"。在Java中,我們可以通過帶有可選參數的重載方法達到同樣的效果。不過,只要調用方忽略了一個參數,其他參數就必須要帶名傳入。

class Point(val x: Double = 0, val y: Double = 0)
val point1 = new Point(y = 1)

這里必須帶名傳入y = 1

注意從Java代碼中調用時,Scala中的默認參數則是必填的(非可選),如:

class Point(val x: Double = 0, val y: Double = 0)

public class Main {    public static void main(String[] args) {        Point point = new Point(1);      }}

到此,關于“scala默認參數值是什么”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

AI

云梦县| 固镇县| 周至县| 达日县| 香河县| 邵东县| 泌阳县| 眉山市| 沈丘县| 金湖县| 财经| 凌云县| 海宁市| 乌兰浩特市| 大石桥市| 绥阳县| 大田县| 舒兰市| 开平市| 盘锦市| 渝北区| 谷城县| 理塘县| 呼玛县| 资溪县| 名山县| 姚安县| 沙田区| 青河县| 宁化县| 太湖县| 临泉县| 长治县| 南和县| 武定县| 丰顺县| 许昌市| 屯留县| 合水县| 昌乐县| 电白县|