91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

呼伦贝尔市| 楚雄市| 夹江县| 搜索| 临潭县| 盐津县| 辽中县| 周至县| 友谊县| 柞水县| 平顺县| 临邑县| 富宁县| 景谷| 深州市| 东宁县| 鲁甸县| 乌鲁木齐市| 衡山县| 乐昌市| 宜君县| 赫章县| 剑河县| 江永县| 永丰县| 集安市| 宜兰市| 文山县| 建始县| 和顺县| 礼泉县| 连江县| 房山区| 东平县| 景东| 安福县| 山丹县| 如东县| 昂仁县| 余干县| 普安县|