วันพฤหัสบดีที่ 13 กุมภาพันธ์ พ.ศ. 2557

ตัวอย่างเมท็อดค้นข้อมูลในอาเรย์

ตัวอย่างเมท็อดค้นข้อมูลในอาเรย์

ตัวอย่างโค้ดโปรแกรมนี้เป็นตัวอย่างการสร้างเมท็อด (method) สำหรับค้นข้อมูลในอาเรย์ (Array) ซึ่งเมท็อดนี้จะรับค่า array และก็ตัวค้น

ตัวอย่างโค้ด

public class JavaCodeExam {
public static void main(String[] args) throws Exception {
String[] a = new String[]{"a", "A", "b", "c"};
System.out.println("A Text is " + search(a, "A"));
System.out.println("a Text is " + search(a, "a"));
System.out.println("d Text is " + search(a, "d"));
System.out.println("c Text is " + search(a, "c"));
}

public static int search(String[] s, String x) {
for (int i = 0; i < s.length; i++) {
if (s[i].equals(x))
return i;
}
return -1;
}
}

yengo หรือ buzzcity

ไม่มีความคิดเห็น :

แสดงความคิดเห็น