HarmonyOS ArkTS 布尔(boolean)类型

发布于 1周前 作者 itying888 来自 分享

HarmonyOS ArkTS 中可以使用boolean来表示这个变量是布尔值,可以赋值为true或者false

// HarmonyOS ArkTS 布尔类型 true false

let stateOn: boolean = true
let stateOff: boolean = false

更多关于HarmonyOS ArkTS 布尔(boolean)类型的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html

回到顶部