일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Full text
- 전체
- 추상클래스
- 25가지 효율적인 sql작성법
- 전자정부
- 형변환
- 이클립스
- 전체텍스트
- 페이징
- 자바
- angular2
- Validations
- full text indexing
- Login with OAuth Authentication
- jquery
- 로또
- 단축키
- 스프링
- while
- 다운캐스팅
- Random
- 상속예제
- 가변인자
- 업캐스팅
- 자바 야구게임
- IBatis procedure
- 상속
- 다형성
- 야구게임
- Today
- Total
목록전체 글 (448)
nalaolla
package test.com; class Number01 { int num; public Number01() { num = 10; System.out.println("constructor call"); } public int getNumber() { return num; }} public class Study03 { public static void main(String[] args) { // TODO Auto-generated method stub // Number01의 인스턴스 num1을 생성한다. 생성시 생성자에 의해 값은 10이 설정된다. Number01 num1 = new Number01(); System.out.println(num1.getNumber()); // Number01의 인스턴스 ..
package test.com; public class Study02 { public static void main(String[] args) { int[] arr = new int[]{1,2,3,4,5,6}; int sum = 0; // 배열값을 e라는 변수에 담고 for문으로 돌린다. for(int e:arr) { sum += e; } System.out.println(sum); // 배열을 돌면서 배열값에 1씩 증가시킨다. for(int e : arr) { e++; System.out.println(e+""); } // 배열값을 찍어준다. for(int e : arr) { System.out.println(e+""); } }}
package test.com; public class Study01 { public static void main(String[] args) { // TODO Auto-generated method stub //2차원 배열 선언 int[][] arr = new int[][] { {1,2}, {3,4,5}, {6,7,8} }; System.out.println("배열의 행값 : " + arr.length); //1차원 배열길이 만큼 돌린다..3개 for (int i = 0; i < arr.length; i++) { //1차원 배열의 각 2차원 배열값의 갯수를 추출한다. System.out.printf("%d행의 길이는 %d입니다. ", i, arr[i].length); } } } 2차원 배열의 경우 []..
package test.com; public class ReculFactorial { public static void main(String[] args) { // TODO Auto-generated method stub //System.out.println("7 factorial : " + factorial(7)); factorial(7); } public static int factorial(int n) { if (n == 1) return 1; else System.out.println(factorial(n-1)); return n*factorial(n-1); } }
package test.com; public class InfRecul { public static void main(String[] args) { // TODO Auto-generated method stub showHi(3); } public static void showHi(int cnt){ System.out.println("Hi~"); showHi(cnt--); if(cnt == 1) return; } }
package test.com; class FruitSeller { int numOfApple; int myMoney; int applePrice; public FruitSeller(int money, int appleNum, int price) { this.numOfApple = appleNum; this.myMoney = money; this.applePrice = price; } public int saleApple(int money) { int num = money / applePrice; numOfApple -= num; this.myMoney += money; return num; } public void showResult() { System.out.println("남은apple : " + ..