我想使用一種方法來返回一個數組的索引值,所以我可以在另一個類中使用它,但我似乎無法使它工作。這裏是我的代碼:如何使用方法返回數組元素的索引?
這一個告訴我,沒有返回聲明。
public int getCourseIndex(String course){
for (int i = 0; i<courses.length; i++)
if(course.equals(courses[i]))
}
我也試過,我認爲它只是返回0:
public int getCourseIndex(String course){
int total = 0;
for (int i = 0; i<courses.length; i++){
if(course.equals(courses[i])){
total++;
}
return total;
}
最簡單的方法是創建一個'INT index'變量。在你的for循環中,如果你找到了一個'course',把這個值設置爲'i',並使用break來打斷循環;' –
它是否曾經在第二個代碼snipet中輸入if代碼塊? – Adarsh
你能告訴我你的意思嗎? – user2848565