วันพฤหัสบดีที่ 18 ตุลาคม พ.ศ. 2561

็Hello JAVA

            JAVA คือภาษาสำหรับการเขียนโปรแกรมคอมพิวเตอร์ภาษาหนึ่งซึ่งนิยมนำมาใช้ในการพัฒนาแอพลิเคชัน Android และอื่น ๆ

การทำงานของภาษา JAVA
- เขียนโปรแกรม ด้วยภาษา JAVA และบันทึกไฟล์นามสกุล .java
- คอมไพล์โปรแกรม
- run program

สำหรับการเขียนโปรแกรมภาษาจาวา ได้เลือกใช้ Eclipse เป็น IDE โดยการใช้งาน eclipse มีงั้นตอนง่ายๆ ดังนี้

download JDK from link
download Eclipse SimReal 2018-09 from 
https://www.eclipse.org/downloads/

ทำการลง โปรแกรมตามปกติ 
เมื่อลงเสร็จแล้วสามารถใช้งานได้เลย

ตัวอย่างการ sort และ search

public class MainClass {
   public static void main(String args[]) throws Exception {
      int array[] = { 2, 5, -2, 6, -3, 8, 0, -7, -9, 4 };
      // sort
      Arrays.sort(array);
      printArray("Sorted array", array);   
      // search     
      int index = Arrays.binarySearch(array, 2);
      System.out.println("Found 2 @ " + index);
   }
   private static void printArray(String message, int array[]) {
      System.out.println(message + ": [length: " + array.length + "]");
     
      for (int i = 0; i < array.length; i++) {
         if(i != 0) {
            System.out.print(", ");
         }
         System.out.print(array[i]);                   
      }
      System.out.println();
   }
}

ผลลัพธ์ที่ได้คือ

      Sorted array: [length: 10]
      -9, -7, -3, -2, 0, 2, 4, 5, 6, 8
      Found 2 @ 5

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

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