abstract do import public throws boolean
double instanceof return transient break else
int short try byte extends interface
static void case final long strictfp
vovatile catch finally native super while
char float new switch null class
for package synchronized true continue if
private this false default implements protected
throw
ตัวอย่างการตั้งชื่อตัวแปรในภาษา Java
// int
int num1 = 5;
int num2;
num2 = 10;
int num3 = 20 , num4 = 30;
// String
String name = "Win";
String firstname, lastname;
Scope ในการตั้งชื่อตัวแปร
package com.java.myapp;
public class MyClass {
int aVar = 0; // ใช้ได้ทั้งหมดภายใน MyClass
public static void main(String[] args) {
int bVar = 0; // ใช้เฉพาะใน method main
}
public static void method1() {
int cVar = 0; // ใช้เฉพาะใน method method1
}
}