java返回特定下标元素_java基础--输出数组中指定元素的下标
java基礎(chǔ)--輸出數(shù)組中指定元素的下標(biāo)
java基礎(chǔ)--輸出數(shù)組中指定元素的下標(biāo)
package com.lcn.day05;
public class ArrayDemo8 {
/**
* 輸出數(shù)組指定元素的下標(biāo)
*/
public static void main(String[] args) {
//定義一個(gè)數(shù)組
int[] array = new int[]{123,456,789,321,654,987};
int index = printArray(array,321);
System.out.println("321對應(yīng)的下標(biāo)是:"+index);
//查詢沒有的數(shù)據(jù)
int index1 = printArray(array,10000);
System.out.println("10000對應(yīng)的下標(biāo)是:"+index1);
}
//遍歷數(shù)組
public static int printArray(int[] array,int value){
for(int i = 0;i
if(array[i]==value){
return i;
}
}
return -1;//當(dāng)if條件不成立時(shí),默認(rèn)返回一個(gè)負(fù)數(shù)值-1
}
}
輸出:
321對應(yīng)的下標(biāo)是:3
10000對應(yīng)的下標(biāo)是:-1
java基礎(chǔ)--輸出數(shù)組中指定元素的下標(biāo)相關(guān)教程
總結(jié)
以上是生活随笔為你收集整理的java返回特定下标元素_java基础--输出数组中指定元素的下标的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: html ace编辑器,Tiny-edi
- 下一篇: python20个常用语法_这20个常规