2진수
변수
변수명
표기법
public class DataType { int x = 10; // field public static void main(String[] args) { int bookSize = 10; // local variable } }