예약어란?
프로그래밍 언어의 구문에 사용되는 단어
클래스나 변수, 메서드의 이름(식별자)으로 사용할 수 없다.
Java 예약어(나만의 방식...)
byte, short, char, int, long, float, double, (boolean -true, false) : 기본형 데이터 타입
String : 참조형 데이터 타입, 문자열
if, else if, else, switch, case, for, while, do, break, return, continue : 제어문
pubilc, protected, defalut, private : 접근제한자
throw, throws, try, catch, finally : 예외처리
void : 리턴할 것이 없다
static : class 소속 지정
class : class명 앞에
import : 불러오다
package : 패키지
abstract : 추상메소드 & 추상 클래스 사용
super : 부모 소환
this : 자기 자신
implements : Runnable 불러올 때
null : String 초기값
final : 상수
extends : 상속
new : 인스턴스 생성
synchronized : 동기화
'IT > Java' 카테고리의 다른 글
[자바] Calendar Class (0) | 2021.05.13 |
---|---|
[자바] String Class (0) | 2021.05.11 |
[자바] beginning (2) | 2021.04.23 |
[자바] MultiThread (0) | 2021.04.22 |
[자바] 은닉화/캡슐화 (0) | 2021.04.21 |