Recent Posts

[Java] Exception

less than 1 minute read

★프로그램 컴파일시, 런타임시에 더이상 진행할 수 없는 예외가 발생하면 자바런처가 예외발생을 알린다.

[Java] Collection

1 minute read

★Collection 프레임워크 : 무한한 데이터들을 저장하기 위해 사용하는 정형화된 형식 클래스들의 모음, 다형성을 활용하면서 다양한 자료구조를 사용할 수 있도록 자바가 만들어 놓음

[Java] Abstract Class

less than 1 minute read

★추상메소드 : 메소드의 내용은 정의되지 않고, 메소드의 접근제한자, 리턴타입, 이름, 파라메터만 선언되어있는 메소드로 abstract키워드를 사용해 선언한다. public abstract int getCount(int[] arr);

[Java] Random객체

less than 1 minute read

Random random = new Random(); // 랜덤객체 생성 int n = random.nextInt(100); 정수 n의 범위는 0부터 99까지 100개

[Java] 콘솔 출력, 서식 문자

less than 1 minute read

★출력하는 방법(콘솔, 표준 출력) System.out.print("100\n"); // 그냥 출력 System.out.print("" + 3.14 + '\n'); System.out.println("A"); // 출력 후 줄바꿈 System.out.println("Test St...