英文:
cannot resolve method 'get key' in Pair in android?
问题
我在使用Android Studio中的函数时遇到了问题,其中我使用了Pair库中的函数,以下是我的代码片段:
import android.util.Pair;
Penyakit penyakit = (Penyakit) p.getKey();
我需要一个解决方案,谢谢。
英文:
I have a problem using functions in Android Studio, where i use the function in Pair library,here's a snippet of my code
import android.util.Pair;
Penyakit penyakit = (Penyakit) p.getKey();
i need a solution, thanks
答案1
得分: 0
因为在 android.util.Pair
中没有 #geyKey
。您需要使用 pair
的属性,即 first
和 second
。在这里,p.first
将是键,p.second
将是值。
Penyakit penyakit = (Penyakit) p.first;
英文:
Because there is not a #geyKey
in android.util.Pair
. You need use property of pair
which are first
and second
. Here p.first
will be key and p.second
will be value
Penyakit penyakit = (Penyakit) p.first;
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论