일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Login with OAuth Authentication
- 전자정부
- 형변환
- 스프링
- 전체텍스트
- 상속
- 전체
- 추상클래스
- 가변인자
- 페이징
- Validations
- Full text
- while
- 이클립스
- Random
- 업캐스팅
- angular2
- full text indexing
- 단축키
- 상속예제
- 다운캐스팅
- jquery
- 다형성
- IBatis procedure
- 25가지 효율적인 sql작성법
- 야구게임
- 자바
- 자바 야구게임
- 로또
- Today
- Total
목록전체 글 (448)
nalaolla
package test.com; public class Test01AAA { private int x; String y; public int[] xs; protected String[] ys;} package test.com; public class Test01Main { public static void main(String[] args) { // TODO Auto-generated method stub System.out.println("main..."); // Test01AAA ta01 = new Test01AAA();// System.out.println(ta01);// // ta01 = new Test01AAA();// System.out.println(ta01);// // Test01AAA t..
package test.com; public class Test05board { int num; String title; String contents; String writer; String wdate; String[][] boardList; public Test05board() { num = 10; title = "제목"; contents = "내용"; writer = "작성자"; wdate = "작성일자"; System.out.println(num); System.out.println(title); System.out.println(contents); System.out.println(writer); System.out.println(wdate); } public Test05board(String[]..
package test.com; public class Test04member { int num; String id; String pw; String name; String tel; Test04member[][] strs; public Test04member() { num = 1; id = "admin"; pw = "1234"; name = "daniel"; tel = "010"; System.out.println(num); } public Test04member(int num, String id, String pw, String name, String tel) { this.num = num; this.id = id; this.pw = pw; this.name = name; this.tel = tel; ..
package test.com; public class Test03score { //접근제한자 선언이 없다 >> default //접근범위 public > protected > default : 같은 패키지 안에서만 > private : 동일클래스 public String name; int kor; int eng; int math; int total; protected double avg; /*private*/ String grade; public Test03score() { //매개변수 없는 생성자 : 생략가능// System.out.println(name);// System.out.println(kor);// System.out.println(eng);// System.out.println(math)..
package test.com; public class Test02Constructor { // 2. 멤버필드 String name; //이름, null int age; //나이, 0 // 1. 생성자 // 매개변수(argument) 있는 생성자와 없는 생성자가 있다. // 동일한 생성자 선언 불가 // 다른 생성자라 함은(오버로딩 규칙) : 1.매개변수 갯수, 2.같은 개수일때 다른타입, 3.같은 갯수, 같은 타입일때 타입순서 다를경우 // 생성자 사용 주목적 : 멤버필드의 초기화 >> 속성부여, 변경 public Test02Constructor() {// System.out.println(name);// System.out.println(age); } public Test02Constructor(in..
package test.com; public class Test01class { //class는 객체를 생성하기위한 틀(겉표지) //2. 전역변수, 멤버필드, 인스턴스 변수 >> 속성 static int x; //0 String name; //null double d; //0.0 int[] sus; //null String[] strs; //null int[][] suss; //null Test01class t01; //null Test01class[] t01s; //null //선언만해도 기본값을 가진다. // //1.생성자// /*접근제한자*/ Test01class(/*매개변수 선언들*/) {// String name = "aaaa";// System.out.println(name);// // } p..