top of page
Java2Kr용 한국어 java
public : 공유된
class : 클래스
psvm : 프로그램 시작
if : 만약
else : 아니면
for(int forInt=0; forInt<%; forInt++) : 반복(:%:)
while : 반복
System.out.println(); : 출력();
System.out.print(); : 출력-();
try{}catch(Exception e){} : 시도{}처리{}
try{}catch(NullPointerException e){sout} : 시도{}처리(NullPointerException e){출력();}
Scanner scanner = new Scanner(System.in); : 스캐너;
scanner.nextLine() : 스캐너입력
scanner.nextInt() : 스캐너정수입력
int : 정수
double : 소수
boolean : 참거짓
String : 문자
void : 메소드
static : 일정한
extends : 확장:
implements : 부모:
Runnable : 병렬처리
JFrame : 자바프레임
JLabel : 자바라벨
JButton : 자바버튼
equals() : 일치()
bottom of page

