我是kotlin的初学者,我正在尝试过滤一个列表中存在的项目,但是我为此使用了循环和迭代器。我在if条件in中提到异常。有人可以指导我哪里做错了吗。
我在这里粘贴我的功能。

fun getGateWays(
        gateways: ArrayList<JsonObject>?,
        callback: ResponseCallback<ArrayList<JsonObject>, String>
    ) {


        getDistinctGateways(object : ResponseCallback<List<String>?, String>() {

            override fun onFailure(failure: String) {
            }

            override fun onSuccess(response: List<String>?) {

                for(e in gateways!!.iterator()){
                    if(e.get("value") in response){
                        gateways.remove(e)
                    }
                }
                callback.onSuccess(gateways!!)
            }

        })

    }

最佳答案

这是因为

    gateways.iterator() will give Iterator<JsonObject>
    e is of JsonObject type and response is the type List<String>

10-01 02:55