- 博客(4)
- 收藏
- 关注
原创 scala数组
数组固定长度数组val nums = new Array[Int](10)nums: Array[Int] = Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0)scala> val s = Array("hello", "world")s: Array[String] = Array(hello, world)s(0) = "goodbye"scala 修改数组时候并不使
2015-07-16 08:27:50 643
原创 Scala 基础语法
Scala 基础语法流程控制scala if 语句判断scala> if (x > 20) 1 else -1res0: Int = -1if 语句也可以直接放入一个变量返回值中scala> val s = if (x > 0) 1 else -1s: Int = 1scala 存在一种混合类型表达式,比如scala> if (x > 0) "positive" else -1res1: An
2015-07-10 10:00:38 846
原创 scala 入门
安装配置scala首先scala是基于java开发环境的扩展,系统首先需要保证配置好jre和jdk。官方推荐使用java 6 以上版本, 但事实在即将发布的新版本scala 2.12版本中, 只会支持 java 8, 所以我在这里也首先安装了java 8 jdk。scala需要安装的组件分为两部分, 我的开发环境是在mac下, 所以使用了brew的方法进行了安装, 命令分别是:brew instal
2015-07-10 08:34:16 2524
原创 scala 单元测试
scala 单元测试字符串测试ScalaTest 提供了很方便的测试字符串的工具, 这些工具可以进行正则表达式的测试,常用方法有:val string = "test string"string should startWith("test")string should endWith("string")string should not endWith("the end")string s
2015-07-10 07:34:54 3065 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人