Scala 基础

Posted by danner on September 1, 2017

本文记录 scala 中一些隐晦的知识点

函数类型

A => B 指代函数参数类型是 A,返回类型是 B。那么显而易见,Int => Int 是数字到数字的映射即传入数字返回数字的函数。