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

Update data-type.md

上级 3e191ce8
......@@ -102,13 +102,27 @@ let utsArr= utsArrayOf("hello","world")
let kotlinList = utsArr.toKotlinList()
```
##### 我有一个kotlin.collections.List 我需要一个我有一个UTSArray
##### 我有一个UTSArray 我需要一个java.util.Array
```
let utsArr= utsArrayOf("hello","world")
let kotlinList = utsArr.toArray()
```
##### 我有一个kotlin.collections.List 我需要一个UTSArray
```
let utsArr= mutableListOf("hello","world")
let kotlinList = utsArr.toUTSArray()
```
##### 我有一个java.util.Array 我需要一个UTSArray
```
let utsArr= arrayOf("hello","world")
let kotlinList = utsArr.toMutableList().toUTSArray()
```
### Object类型 @object
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册