일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 다운캐스팅
- 이클립스
- Random
- 업캐스팅
- 다형성
- 전자정부
- while
- 25가지 효율적인 sql작성법
- full text indexing
- jquery
- 자바 야구게임
- IBatis procedure
- 스프링
- 페이징
- 자바
- angular2
- Login with OAuth Authentication
- 야구게임
- 추상클래스
- Validations
- 단축키
- 전체텍스트
- 상속예제
- Today
- Total
목록전체 글 (448)
nalaolla
package test.com; import static test.com.Bank.getBank; public class BankMain { public static void main(String[] args) { System.out.println("Bank Singleton Design Pattern"); //1. Bank객체를 만들고 싶다.. //Bank b = new Bank(); //Bank b = Bank.b; Bank b = Bank.getBank(); //singleton getBank(); System.out.println(b); } } package test.com; public class Bank { //내 b객체를 다른 클래스에서 접근을 막고싶다. private static Bank ..
package test.com; import test.com.aaa.Test02AAA; public class Test02Main { public static void main(String[] args) { System.out.println("static...start"); System.out.println(Test02AAA.name); System.out.println(Test02AAA.age); System.out.println(Test02AAA.address2); System.out.println("================================"); Test02AAA.name = "daniel"; Test02AAA.age = 41; Test02AAA.address2 = "구리시 수택동"..
package test.com; public class Test01staticMain { int num; static String name; public void aaa(){ System.out.println("aaaa..."); Test01staticMain.bbb(); } public static void bbb(){ System.out.println("bbb()..."); Test01staticMain m = new Test01staticMain(); m.aaa(); } public static void main(String[] args) { System.out.println("static..."); //1. static은 static끼리 편하게(객체생성없이) 사용 //접근방법 : class명.st..
package test.com; public class Test04BoardDAO { public int insert(Test04BoardVO vo) { System.out.println(vo.getNum()); System.out.println(vo.getTitle()); System.out.println(vo.getContent()); System.out.println(vo.getWriter()); System.out.println(vo.getRegDate()); return 1; } public int update(Test04BoardVO vo) { return 2; } public int delete(Test04BoardVO vo) { return 3; } public Test04BoardVO s..
package test.com; public class Test03MemberDAO { public int insert(Test03MemberVO vo) { System.out.println(vo); System.out.println(vo.getNum()); System.out.println(vo.getId()); System.out.println(vo.getPw()); System.out.println(vo.getName()); System.out.println(vo.getTel()); return 0; } public int update(Test03MemberVO vo){ System.out.println(vo); return 0; } public int delete(Test03MemberVO vo)..
package test.com; public class Test02ScoreDAO { public String insert(Test02ScoreVO vo) { System.out.println(vo); System.out.println("데이터 저장 처리 완료"); System.out.println(vo.getName()); System.out.println(vo.getKor()); System.out.println(vo.getEng()); System.out.println(vo.getMath()); System.out.println(vo.getTotal()); System.out.println(vo.getAvg()); System.out.println(vo.getGrade()); return "succ..