일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Color
- 프로그래머스
- 코딩테스트
- CSS
- SWEA
- front-end
- Web
- CleanCode
- android
- 정렬
- java
- algorithm
- DP
- 자바
- 순환
- SQL
- 클린코드
- DFS
- javascript
- codecademy
- 검색트리
- inflearn
- 구현
- 해슁
- html
- BFS
- Kotlin
- 다이나믹 프로그래밍
- 알고리즘
- Spring
- Today
- Total
목록자바 (6)
깡뇽
- 클래스 Ex) Example d ; d = new Example ( ) ; class Example ( ) { System.out.println ( "hi" ) ; } -> 실행하면 hi public void left ( ) { System.out.println ( "좌회전" ) ; } public void right ( ) { System.out.println ( "우회전" ) ; } Car myCar ; myCar = new Car ( ) ; myCar.left ( ) ; -> 실행하면 좌회전 Car yourCar ; yourCar = new Car ( ) ; yourCar.left ( ) ; -> 실행하면 우회전 - 생성자 함수 : 클래스로 객체를 만들 때 1번만 최초로 생성되는 함수 ( 무조건..
- 함수 : public static 자료형 함수명 ( 매개변수 ) { 기능 } Ex) public static int sample ( int x ) { int result = 2 * x - 1 ; return result ; } System.out.println ( sample ( 2 ) ) ; -> 실행하면 3 => public static : 접근제어자 int : return 되는 자료형. int 대신 void로 변경하면 return이 없을 때 함수 사용 가능. sample : Ex에서의 함수명 return : Ex에서는 없으면 오류 발생 Ex) public static void hi ( ) { System.out.println ( " hello " ) ; } hi ( ) ; -> 실행하면 hell..
- 배열 ① 방법1 : 배열의 크기를 정하고 값을 따로 넣는 방법 Ex) int [ ] arr1 = new int [ 5 ] ; arr1 [ 0 ] = 10; arr1 [ 1 ] = 20; arr1 [ 2 ] = 30; arr1 [ 3 ] = 40; arr1 [ 4 ] = 50; arr1 [ 5 ] = 60; System.out.println ( arr1 [ 2 ] ) ; -> 출력하면 30 => 위의 예시에서 int는 배열 안에 들어갈 자료형을 표시함. arr1은 배열의 이름. [ 5 ]는 배열 내 자료의 개수를 의미함. ② 방법2 : 배열에 값을 바로 넣는 방법 Ex) int [ ] arr2 = { 100, 200, 300, 400, 500 }; System.out.println ( arr2 [ 0 ..
- 반복문 ① for 문 for ( 변수 초기화 ; 조건 ; 증가or감소 ) { 반복할 코드 } ② while 문 while ( 조건 ) { 반복할 코드 } ③ do while 문 do { 반복할 코드 } while ( 조건 ); => 조건이 틀려도 반복할 코드가 1회 실행됨. Ex) 구구단 만들기 for ( int i = 2 ; i < 10 ; i ++ ) { for ( int j = 1 ; j < 10 ; j ++ ) { System.out.println ( i + " * " + j + " = " + j * i ) } }
- 조건문 if ( 조건 ) { 조건이 맞을 때 실행할 코드 }; else if ( 조건 ) { 위 조건이 틀릴 때 실행할 코드 }; else { 위에 모든 조건이 틀릴 때 실행할 코드 }; => if와 else만으로 조건문 작성 가능. 조건을 추가로 넣고 싶을 경우에 else if를 여러 개 추가할 수 있음. - switch / case 문 Ex) int score = 100; switch ( score ) { csase 100 : System.out.println("1"); break; case 90 : System.out.println("2"); break; case 80 : System.out.println("3"); break; case 70 : System.out.println("4"); br..
Eclipse 설치 -> Eclipse IDE 실행 File -> New -> Java project 생성 -> Project name 입력 -> Finish -> Module name 입력 -> create java 파일 생성 : Project에서 src 우클릭 -> New -> Class 생성 -> Name 입력 -> Finish 필수 입력 : public static void main(String[] args){ 이 안에 코드를 작성 } - 자료형 int : 정수 double : 실수 char : 문자 boolean : true 와 false Ex) double c = 10.258; -> 출력하면 10.258 char d = 'k'; -> 출력하면 k boolean s = false; -> 출력하면..