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

Update data-type.md

上级 73836956
...@@ -116,14 +116,14 @@ let user: string | null ...@@ -116,14 +116,14 @@ let user: string | null
##### 1 我有一个UTSArray 我需要一个kotlin.collections.List ##### 1 我有一个UTSArray 我需要一个kotlin.collections.List
``` ```
let utsArr= utsArrayOf("hello","world") let utsArr= ["hello","world"]
let kotlinList = utsArr.toKotlinList() let kotlinList = utsArr.toKotlinList()
``` ```
##### 2 我有一个UTSArray 我需要一个java.util.Array ##### 2 我有一个UTSArray 我需要一个java.util.Array
``` ```
let utsArr= utsArrayOf("hello","world") let utsArr= ["hello","world"]
let kotlinList = utsArr.toArray() let kotlinList = utsArr.toArray()
``` ```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册