时间:2021-05-19
详解 Kotlin Reference Basic Types, String, Array and Imports
基本数据类型
Kotlin中支持的基本数据类型及它所占Bit宽度:
Type Bit width Double 64 Float 32 Long 64 Int 32 Short 16 Byte 8
Char在kotlin中 并不是一个数值类型
kotlin不支持8进制, 支持 2、10、16进制
下面的代码,示例了:
关于2、10、16进制;
使用下划线在数值常量赋值数据中;
使用==和===进行比较;
基本数据类型间的类型转换方法toXxx;
位移操作;
字符,转义符
package com.stone.basic.types/** * desc : 基本数据类型 按位操作符 * author: stone * email : aa86799@163.com * time : 30/05/2017 19 14 */fun basic() { var intValue = 7777 var floatValue1 = 8.3f var floatValue2 = 10.45F var doubleValue = 9.99 var longValue = 1L// var longValue = 1l //不能用 小写l后缀 var hexValue = 0XA8a8a8a8a8a8a8a //Hexadecimals 0x或0X开头 println("hexValue: ${hexValue > Int.MAX_VALUE}") var doubleValue2 = 1.3e24 //科学记数法 1.3*10^24 println("1e24 / (10^20) : ${doubleValue2 / Math.pow(10.0, 20.0)}") val binaryValue = 0B00001011 //以 0B或0b 开头 println("binaryValue : $binaryValue") }//使用下划线在数值常量赋值数据中,增加可读性val oneMillion = 1_000_000val creditCardNumber = 1234_5678_9012_3456Lval socialSecurityNumber = 999_99_9999Lval hexBytes = 0xFF_EC_DE_5Eval bytes = 0b11010010_01101001_10010100_10010010fun equal() { val a: Int = 10000 val b: Int = 10000 println("1 : ${a === b}") // Prints 'true' val boxedA: Int? = a val anotherBoxedA: Int? = a println("2 : ${boxedA === anotherBoxedA}") // !!!Prints 'false'!!! println("3 : ${boxedA == anotherBoxedA}") // Prints 'true'// val c: Int? = 1// val d: Long? = c // c 不能赋值给 d// println("4 : ${c == d}") // Int 和 Long不能 相比 //像 上面这样的 隐式转换 都行不通的, 只能使用如下明确转换方式: to方法 val e: Int = 1 val f: Long = e.toLong() //类型推断 val l = 1L + 3 // Long + Int => Long}fun bitwise() { val r = 1 shl 2 and 0x000FF000 }fun charOperation() { val str = "stone" for (c in str) { println("char in str : $c") val r = c + 3// if (r == 118) {//不能如此操作:Char 在kotlin中 并不是一个数值类型// println(r)// } if (r.toInt() == 118) {//可以用toInt() 来进行比较 println("符合条件的字符$r, 原始字符串的字符是${r - 3}") } fun decimalDigitValue(c: Char): Int { if (c !in '0'..'9') throw IllegalArgumentException("Out of range") return c.toInt() - '0'.toInt() // Explicit conversions to numbers }// decimalDigitValue('x') decimalDigitValue('6') } }fun booleanOperation() { val b: Boolean = !true }fun main(args: Array<String>) { basic() equal() charOperation()}String Type
package com.stone.basic.types/** * desc : * author: stone * email : aa86799@163.com * time : 30/05/2017 20 48 */fun main(args: Array<String>) { val text = """|Tell me and I forget.|Teach me and I remember.|Involve me and I learn.|(Benjamin Franklin)>admin""".trim().trimMargin().trimMargin(">") //trimMargin 去掉前缀,默认以|作margin前缀,也可以指定前缀 println(text) var s = "abc" var str = "$s.length is ${s.length}" val price = """${'$'}9.99${"\t"}一杯果汁""" println(price)}Array Type
package com.stone.basic.typesimport java.util.*/** * desc : * author: stone * email : aa86799@163.com * time : 30/05/2017 20 48 */fun main(args: Array<String>) { val ary = arrayOf(1, 3, 2) //使用arrayOf 创建数组// val asc = Array(5, { i -> (i * i).toString() }) val asc = Array(5, { i -> Math.random() }) //使用构造函数创建数组:后面的lambda参数,表示设置每个index上的元素 for (it in asc) {// println(it == "1") println(it) } val ary2 = arrayOfNulls<Long>(2) //每个数组元素中 填充一个null值 for (i in ary2.indices) {//indices 返回一个 索引范围 : IntRange ary2[i] = 3L + Random().nextInt(10) println("ary2[$i] : ${ary2[i]}") //[] 可以用于 get 和 set 操作 } val ary3 = doubleArrayOf(1.0, 2.2, 3.3) //基本数据类型都对应有一个 xxArrayOf函数}Import
package com.stone.basic.importsimport kotlin.*//import static java.lang.Math //Kotlin 不支持/*默认import Kotlin file :— kotlin.*— kotlin.annotation.*— kotlin.collections.*— kotlin.comparisons.* (since 1.1)— kotlin.io.*— kotlin.ranges.*— kotlin.sequences.*— kotlin.text.*还有 Kotlin— JVM:— java.lang.*— kotlin.jvm.*//Kotlin 不支持 静态方法导入 */感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Kotlin语言中调用JavaScript方法实例详解Kotlin已被设计为能够与Java平台轻松互操作。它将Java类视为Kotlin类,并且Java也将Ko
Kotlin开发Android应用实例详解相关文章:关于Kotlin语言的基础介绍:我们简单的知道了Kotlin这门新语言的优势,也接触了一些常见的语法及其简单
详解Kotlin中的面向对象(二)在Kotlin中的面向对象(一)中,介绍了Kotlin类的相关操作,本文将在上文的基础上,继续介绍属性、接口等同样重要的面向对
复制代码代码如下:$a=1;$b=2;$t=array(array('a','string',$field['a']),//名称if($a==$b){array
复制代码代码如下://SQLADDSLASHESfunctionsaddslashes($string){if(is_array($string)){forea