scala
afafafaaetrt
嗯哼
展开
-
scala特质
特质原创 2018-12-22 15:29:02 · 161 阅读 · 0 评论 -
scala隐式转换--1.隐式函数和隐式类
定义隐式函数和类object ImplicitContext { //隐式转换函数(String->Int) implicit def string2Int(s:String)=s.toInt //隐式转换类,将 int类型转为Buffer 并将int值添加到buffer中 implicit class Int2String(i:Int){ def int2Bu...原创 2018-12-22 21:37:40 · 144 阅读 · 0 评论 -
scala --类
1原创 2018-12-23 22:14:20 · 169 阅读 · 0 评论 -
scala中self type 与 依赖注入
准备1.self type/** * * self => * self 并非关键字,你可以用任意其他字符替代 * self只是给this 关键字起了一个别名 * @author Yyyyy * @version 1.0 * **//** * 在内部类中的应用 */object World extends App { //当前对象 thi...原创 2018-12-22 01:14:18 · 297 阅读 · 0 评论 -
scala隐式转换--2.隐式值和隐式参数
/** * 定义一个类,有一个隐式参数的方法 */class Boys { def getAge(name: String)(implicit map: HashMap[String, Int]) = { val age = map.getOrElse(name, null) println(name + "的年龄是:" + age) }}调用objec...原创 2018-12-22 21:44:58 · 124 阅读 · 0 评论