position: position: absolute;스크롤링하면 따라서 올라감. position: fixed;스크롤링해도 설정한 이미지는 화면 내 설정한 위치에 고정된다. z-index: float: float: left;float: right;clear:left — the left side of the element will not touch any other element within the same containing element.right — the right side of the element will not touch any other element within the same containing element.both — neither side of the element will touch..
package homework; public class ConstructorExample1 { //접근 제한자 생략 가능 int num1; int num2; public ConstructorExample1(int num1, int num2){ this.num1 = num1; this.num2 = num2; this.prn(); //this. 생략 가능 /* int sum = 0; sum = num1 + num2; System.out.printf("%d + %d = %d\n", num1, num2, sum); */ } public void prn() { int sum = this.num1 + this.num2;//this. 생략 가능 System.out.println(sum); } ConstructorEx..
* { box-sizing: border-box; }
int[][] s = new int[2][3]; for (int i=0; i해당 면의 행 수s[1][0].length ->해당 면, 행의 열의 수 System.arraycopy()메소드를 이용해 배열 복사하기System.arraycopy(src, srcPos, dest, destPos, length); //1, 2: 원본의 배열 명, 원본 배열에서 복사할 항목의 시작 인덱스 //3, 4, 5: 복사 대상에 대한 배열 명, 위치값, 몇 개를 복사할 지 복사될 갯수 간단하게 실습해보자//배열 복사 public void ex2() { // 2)기본형 배열을 복사한 후 출력 int[] a = {1,2,3,4,5}; int[] b = new int[10]; //배열이 넘칠 때 더 큰 배열을 만들어서 옮겨주는 작업..
- Total
- Today
- Yesterday
- DECODE()
- 로컬 클래스
- Interface
- IS RECORD
- !(not)
- 데이터 딕셔너리
- GROUP BY절
- implements
- IN(var1 var2 var3)
- 멤버 클래스
- FileChannel
- SQL Operator
- NVL()
- 상속
- SELECT절 명령어
- casring
- hierarchical query
- 복수행 함수
- z-dindex
- DI(의존성 주입)
- NVL2()
- Maven Project
- MONTH_BETWEEN
- Generic Type
- 타입변환과 다형성
- 계층형 쿼리
- 테이블 데이터 복사
- tables in htmll
- 중첩 클래스
- CLASS
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |