码迷,mamicode.com
首页 > 其他好文 > 详细

scala数据类型

时间:2018-04-19 18:21:16      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:对象   函数   star   操作符   art   unit   htm   相关   eth   

# Scala数据类型
## 1.数值类型
### 1.1 与Java一样Scala也有8种数值类型
* Byte
* Char
* Short
* Int
* Long
* Float
* Double
* Boolean
### 1.2 其它数值类型
* BigInt = java.math.BigInteger
* Decimal = java.math.BigDecimal
### 1.3 用法
* 1.4.toInt => 1
* 99.toChar => c
* ‘A‘.toInt => 65
### 1.4 操作符
a + b => a.+(b)
* \+
* \-
* \*
* \/
* \%
* \&
* \|
* \^
* \>>
* \<<
* +=
* -=
### 1.5 函数和方法
* __方法和对象相关,函数和对象无关。__
* 方法:

def method(age: Int): Unit = {
println("Your age is " + age + ".")
}






http://www.cnblogs.com/nowgood/p/scalastartup.html#_nav_3


scala数据类型

标签:对象   函数   star   操作符   art   unit   htm   相关   eth   

原文地址:https://www.cnblogs.com/chenzechao/p/8884769.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!