Scala 基础语法代码

下面的代码包含了基本的Scala的语法内容。包括:判断,循环代码片段,方法定义,调用。 虚拟类,继承,接口,case,package,单例模式


package org.exinglo.scala

class LearnScala {

}

object Test{
  val variable1 = "this is my first scala variable"
    
  def func1(): String = "hello world" //不带参数的函数被调用时,可以不加括号
    
  def func2(who : String): String = { return "hello world " + who}
  
  def func3 = (x : Int, y : Int) => x + y //这是个匿名函数的写法,调用的时候,func3(1,2)
  
  //这里给了y一个默认值,如果用户传过来,那就用用户的
  def func4(x: Int)(y : Int = 1): Int = x + y //加脂法的写法,调用时, func4(1)(2)
  
  // * 代表多个参数的意思,比如 printEveryChar("c","b", "a"),可以传递多个string
  def printEveryChar(c : String*) = {
    c.foreach(x => println(x))
  }
    
  def main(args : Array[String]) {
    println(variable1)
    
    
  • 2
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值