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

Update uts-for-android.md

上级 735dc5bf
......@@ -1280,9 +1280,19 @@ val extraMap = extraParam.toMap()
### 6.12 UTS 如何判断对象数据类型
简单类型判断,返回结果 string/number/object/function 等
```
let param = "123"
UTSAndroid.typeOf(param) // = string
UTSAndroid.typeOf(param) // string
```
复杂的对象类名判断
```
let aa = 12
// 可以获取到具体的类名
console.log(aa.javaClass.toString()) // int
```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册