透過集合功能整理內容
你可以依據偏好儲存及分類內容。
cast.as_bool
cast.as_bool(string_or_int)
說明
函式會將 int 或字串值轉換為布林值。如果函式呼叫的值無法轉換,就會傳回 FALSE。只會針對整數 1 和不區分大小寫的字串「true」傳回 TRUE。
參數資料類型
INT|STRING
傳回類型
BOOL
程式碼範例
範例 1
這個範例說明如何轉換非布林值字串
cast.as_bool("123") = false
範例 2
Truthy 整數 (1)
cast.as_bool(1) = true
範例 3
Truthy 字串
cast.as_bool("true") = true
範例 4
大寫的真值字串
cast.as_bool("TRUE") = true
範例 5
負整數
cast.as_bool(0-1) = false
範例 6
False 整數 (0)
cast.as_bool(0) = false
範例 7
空字串
cast.as_bool("") = false
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2025-07-29 (世界標準時間)。
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["難以理解","hardToUnderstand","thumb-down"],["資訊或程式碼範例有誤","incorrectInformationOrSampleCode","thumb-down"],["缺少我需要的資訊/範例","missingTheInformationSamplesINeed","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2025-07-29 (世界標準時間)。"],[],[],null,[]]