运算符==不能应用于Kotlin中的'Long'和'Int'

时间:2017-05-01 15:09:56

标签: android kotlin operator-keyword

我正在尝试在Kotlin中实现Mike Penz的NavigationDrawer(https://github.com/mikepenz/MaterialDrawer)的部分内容。从那以后,我遇到了一些问题,主要是运营商。以下是实例化抽屉本身的代码的一部分。 Android Studio不会抛出任何错误,除非我在int和Long变量上使用==运算符:

        // Create the Drawer
        result = DrawerBuilder()
                .withSliderBackgroundColor(ContextCompat.getColor(applicationContext, R.color.top_header))
                .withActivity(this)
                .withToolbar(toolbar)
                .withHasStableIds(true)
                .withItemAnimator(AlphaCrossFadeAnimator())
                .withAccountHeader(headerResult!!)
                .addDrawerItems(
                        PrimaryDrawerItem().withName(R.string.drawer_item_profile).withIcon(FontAwesome.Icon.faw_user).withIdentifier(1).withSelectable(false).withIconColor(ContextCompat.getColor(applicationContext, R.color.icon_grey)).withTextColor(ContextCompat.getColor(applicationContext, R.color.stroke)),
                        PrimaryDrawerItem().withName(R.string.drawer_item_create).withIcon(FontAwesome.Icon.faw_paint_brush).withIdentifier(2).withSelectable(false).withIconColor(ContextCompat.getColor(applicationContext, R.color.icon_grey)).withTextColor(ContextCompat.getColor(applicationContext, R.color.stroke)),
                        PrimaryDrawerItem().withName(R.string.drawer_item_yaanich_news).withIcon(FontAwesome.Icon.faw_newspaper_o).withIdentifier(3).withSelectable(false).withIconColor(ContextCompat.getColor(applicationContext, R.color.icon_grey)).withTextColor(ContextCompat.getColor(applicationContext, R.color.stroke)),
                        PrimaryDrawerItem().withName(R.string.drawer_item_my_groups).withIcon(FontAwesome.Icon.faw_users).withIdentifier(4).withSelectable(false).withIconColor(ContextCompat.getColor(applicationContext, R.color.icon_grey)).withTextColor(ContextCompat.getColor(applicationContext, R.color.stroke)),
                        PrimaryDrawerItem().withName(R.string.drawer_item_settings).withIcon(FontAwesome.Icon.faw_cog).withIdentifier(5).withSelectable(false).withIconColor(ContextCompat.getColor(applicationContext, R.color.icon_grey)).withTextColor(ContextCompat.getColor(applicationContext, R.color.stroke))
                )
                .withOnDrawerItemClickListener { view, position, drawerItem ->

                    if (drawerItem != null) {
                        var intent: Intent? = null
                        if (drawerItem.identifier == (1) {
                            intent = Intent(this, UserProfileActivity::class.java)
                        } else if (drawerItem.identifier == 2) {
                            intent = Intent(this, YeetActivity::class.java)
                        } else if (drawerItem.identifier == 3) {
                            intent = Intent(this, RssActivity::class.java)
                        } else if (drawerItem.identifier == 4) {
                            intent = Intent(this, GroupsActivity::class.java)
                        } else if (drawerItem.identifier == 5) {
                            intent = Intent(this, UserSettingsActivity::class.java)
                        }
                        if (intent != null) {
                            this.startActivity(intent)
                        }
                    }
                    false
                }
                .withSavedInstance(savedInstanceState)
                .withShowDrawerOnFirstLaunch(true)
                .build()

        RecyclerViewCacheUtil<IDrawerItem<*, *>>().withCacheSize(2).apply(result!!.recyclerView, result!!.drawerItems)

        if (savedInstanceState == null) {
            result!!.setSelection(21, false)
            headerResult!!.activeProfile = profile
        }
    }

错误:

if (drawerItem.identifier == (1)

if (drawerItem.identifier == 2)

Operator == cannot be applied to 'Long and' 'Int'

5 个答案:

答案 0 :(得分:67)

只需在右侧使用很长时间

if (drawerItem.identifier == 1L)

编辑:这是必要的原因是Kotlin不会将Ints推广到Longs(或者更常见的是,不会扩展类型);在左侧我们有一个Long,在右侧我们有一个Int,导致错误。明确指出右侧是Long可以修复错误。

答案 1 :(得分:2)

出于兴趣,另一种解决方案是使用compareTo()compareTo如果值相等,则返回零;如果值小于另一个,则返回负;如果值大于另一个,则返回正:

 if(drawerItem.identifier.compareTo(1) == 0)   "Equals"

答案 2 :(得分:1)

如果上述解决方案对您不起作用, 尝试显式将右侧的值转换为左侧的特定更宽类型

num = 5.7
if (num == 4.toDouble()) {
    //some code
}

每种数字类型都支持以下转换:

  • toByte(): 字节
  • toShort():短
  • toInt(): 整数
  • toLong():长
  • toFloat(): 浮动
  • toDouble(): 双倍
  • toChar(): 字符

答案 3 :(得分:0)

如果您遇到问题 &LT; operator!=未应用于long和int &gt; 解决它只需在右侧使用long 即值!= 1L 多数民众赞成......

答案 4 :(得分:0)

确保当您将 Double 与任何数字(例如 myDouble == 5)进行比较时,它在最后添加 .0 之前不会起作用。这是因为 Kotlin 从输入的数字中猜测类型,它会将 5 视为 int 并将 myDouble 视为 double 并会产生相同的错误

因此,始终明确地使比较变量与其他变量相同

drawerItem.identifier == (1.0)