gpt4 book ai didi

android-studio - Kotlin 抑制 'condition is always true'

转载 作者:IT老高 更新时间:2023-10-28 13:46:15 30 4
gpt4 key购买 nike

在无数次检查中浪费了更多时间(我知道如何启用和禁用),我找不到任何方法来禁用对我的 'Condition is always true' 的特定检查Android Studio 中的 Kotlin(不是 Java)文件。我知道我在做什么,根本不需要这种检查,但更恰本地说,我想为文件、类或函数或任何东西禁止它。

一如既往的令人沮丧。

//I'm well aware the condition below is ALWAYS true
if(ANDROID_IS_AWESOME) {
fml()
}

最佳答案

在 Kotlin 中,使用 ConstantConditionIf 忽略此警告:

@Suppress("ConstantConditionIf")
if(ANDROID_IS_AWESOME) {
fml()
}

关于android-studio - Kotlin 抑制 'condition is always true',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46207235/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com