顿搜
飞过闲红千叶,夕岸在哪
类目归类
def method(a : Int, b : Int) : Int = { x * y}
def method(a : Int, b : Int) : Int = x * y
def method(a : Int, b : Int) = x * y注意,返回值类型一般情况下可以省略,但是递归方法中,返回值类型必须写
def hello(text : String ){ println(text) }
def hello(text : String ) : Unit = {println(text) } // 明确指定无返回值
def hello(text : String ) = {println(text)} // 省略返回值类型,由编译器判断出无返回值def hello() { println("hello") }无参数的方法,在调用的时候,可以省略“()”