提交 55027449 编写于 作者: 杜庆泉's avatar 杜庆泉

Update data-type.md

上级 5869ab0d
......@@ -722,6 +722,7 @@ array1.forEach((element:string, index:number) => {
* kotlin.FloatArray
* kotlin.ByteArray
* kotlin.LongArray
* kotlin.CharArray
* ...
- 专有数组类型定义方式
......@@ -763,6 +764,10 @@ let kotlinArray = arrayOf("hello","world")
let b4 = intArrayOf(-1,2,0,3,4,5)
let c4 = Array.fromNative(b4)
// kotlin.CharArray 即 java 中的 char[]
let b5 = charArrayOf(Char(66),Char(66),Char(81))
let c5 = Array.fromNative(b5)
```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册