Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-uni-app-x-zh
提交
9b87b81d
U
unidocs-uni-app-x-zh
项目概览
DCloud
/
unidocs-uni-app-x-zh
通知
156
Star
2
Fork
37
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
13
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
unidocs-uni-app-x-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
13
合并请求
13
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
9b87b81d
编写于
8月 20, 2024
作者:
杜庆泉
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update data-type.md
上级
0799e5b6
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
26 addition
and
23 deletion
+26
-23
docs/uts/data-type.md
docs/uts/data-type.md
+26
-23
未找到文件。
docs/uts/data-type.md
浏览文件 @
9b87b81d
...
...
@@ -86,34 +86,12 @@ number本身的使用很简单,但混入了平台专有数字类型后,会
|Float |32bit |1.4E-45F |3.4028235E38 |
[
浮点型
](
https://kotlinlang.org/docs/numbers.html#floating-point-types
)
|
|Double |64bit |4.9E-324 |1.7976931348623157E308 |
[
浮点型
](
https://kotlinlang.org/docs/numbers.html#floating-point-types
)
|
+
特别说明
1
:
+
特别说明:
基本数据类型会有jvm编译魔法加持,kotlin 会把 Int / Double 等非空类型编译为 基本数据类型,Int? / Double? 等可为空的类型编译为 Integer等包装类型,享受不到编译优化加持。
如果涉及大量运算,建议开发者不要使用 number、Int? ,要明确使用 Int等类型
[
详情
](
https://kotlinlang.org/docs/numbers.html#numbers-representation-on-the-jvm
)
+
特别说明2:
`Byte`
类型在
`kotlin`
中使用场景较为广泛,除表示数字,还常见于
`kotlin.ByteArray`
形式表示 文件,网络数据 等字节流。
下面列出了
`kotlin.ByteArray`
的常用转换代码:
```
uts
import Charsets from 'kotlin.text.Charsets'
// 将ByteArray 以 ascii 编码转换为字符串
let str = byteArrayOf(65,66,67).toString(Charsets.ISO_8859_1)
const str: string = 'hello world!'
// 字符串以UTF-8编码转换为 ByteArray
const bytes: ByteArray = str.toByteArray(Charsets.UTF_8)
```
更多
`kotlin.ByteArray`
的用法参考
[
文档
](
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-byte-array/
)
#### Swift 专有的数字类型 @swiftnumber
...
...
@@ -898,6 +876,31 @@ let d = b.toFloatArray()
```
+
特别说明:
`Byte`
类型在
`kotlin`
中使用场景较为广泛,除表示数字,还常见于
`kotlin.ByteArray`
形式表示 文件,网络数据 等字节流。
下面列出了
`kotlin.ByteArray`
的常用转换代码:
```
uts
import Charsets from 'kotlin.text.Charsets'
// 将ByteArray 以 ascii 编码转换为字符串
let str = byteArrayOf(65,66,67).toString(Charsets.ISO_8859_1)
const str: string = 'hello world!'
// 字符串以UTF-8编码转换为 ByteArray
const bytes: ByteArray = str.toByteArray(Charsets.UTF_8)
```
更多
`kotlin.ByteArray`
的用法参考
[
文档
](
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-byte-array/
)
#### iOS 平台专有数组类型
>UTS 中的 Array 对应到 Swift 中就是 Array, 方法是通用的,无需转换。一般情况下,使用 Array 即可。
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录