博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
scala可变长度参数(二)
阅读量:5926 次
发布时间:2019-06-19

本文共 265 字,大约阅读时间需要 1 分钟。

  hot3.png

传入一个范围,

package org.funmo.scalaobject HelloScala {  def main(args:Array[String]){    val s=sum(1 to 5 :_*)    println(s)  }    def sum(args:Int*)={    var result=0    for(arg <- args){      result+=arg    }    result  }}

转载于:https://my.oschina.net/funmo/blog/535642

你可能感兴趣的文章
Go开发Struct转换成map两种方式比较
查看>>
ADO.NET笔记——基本概念
查看>>
推荐使用typora
查看>>
Asia Yokohama Regional Contest 2018 G题 What Goes Up Must Come Down(树状数组求逆序对)
查看>>
基于 HTML5 Canvas 绘制的电信网络拓扑图
查看>>
JDBC
查看>>
python读取windows系统的文件后print乱码问题的解决
查看>>
2-2
查看>>
Stopwatch类学习
查看>>
外部中断0(含知识点)
查看>>
解决centos ping不通外网
查看>>
Shell配置_配置IP
查看>>
自定义Cell的流程
查看>>
Verify the Developer App certificate for your account is trusted on your device.
查看>>
【清北学堂】 死亡(death)
查看>>
java配置JDK
查看>>
《PowerShell 3.0 Advanced Admin handbook》已于今日上市
查看>>
[改善Java代码]性能考虑,数组是首选
查看>>
sql练习(针对Mysql)
查看>>
jQuery 事件和动画
查看>>