본문 바로가기 메뉴 바로가기

DDOO.B.LAB

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

DDOO.B.LAB

검색하기 폼
  • C A T E G O R I E S (65)
    • 배움과 복습 (26)
    • JavaScript (2)
    • HTML&CSS (6)
    • Python (2)
    • 배움의 독백 (6)
    • 아이폰 카톡 테마 (0)
    • DBMS (17)
      • Oracle 11g (17)
    • aJax (0)
    • about Git-Hub (2)
    • myBatis (1)
    • Spring Framework (1)
  • 방명록

C A T E G O R I E S (65)
java GUI - actionPerformed

btnNewButton.addActionListener(new ActionListener() {//익명형(객체명이나 대입연산자가 없잖아) public void actionPerformed(ActionEvent e) { /* 내가 원하는 내용을 쓰는 곳 */ } });private JButton getBtnNewButton() { if (btnNewButton == null) { btnNewButton = new JButton("New button"); btnNewButton.addActionListener(new ActionListener() {//익명형(객체명이나 대입연산자가 없잖아) public void actionPerformed(ActionEvent e) { /* 내가 원하는 내용을 쓰는 곳 */..

배움과 복습 2017. 9. 4. 10:34
Tables

1. Create a table 2. table rows --> tr3. table data --> td4. table headings --> thth에 scope 속성을 넣을 수 있다. ()*scoperow - this value makes it clear that the heading is for a row.col - this value makes it clear that the heading is for a column.5. table borders6. table head --> 7. table footer --> [HTML Tables 요약]The element creates a table.The element adds rows to a table.To add data to a row, you c..

HTML&CSS 2017. 9. 4. 09:38
extends and implements in JAVA

extends1) 부모, 자식의 유형이 동일한 경우 class A {}interface I {} class B extends A{}interface C extends L{} implements1) 부모, 자식 간의 유형이 다른 경우 class D implements L {}interface E implements A{} -----------(X) //불가능--> 내용물이 꽉 차있는데 어떻게 버리고 걔를;;

배움과 복습 2017. 9. 4. 09:17
adding images

1. background-size:cover - expands the image as large as possible to cover the full width or height of a container. If the dimensions of the container (say, a div) are larger than the dimensions of the image, the image will become distorted. This value is best for images that don't communicate important content to the user, like background images.contain - expands the image as large as possible,..

HTML&CSS 2017. 9. 4. 09:15
추상클래스와 인터페이스의 차이점?

인터페이스는 완전추상!추상 클래스는..........

배움의 독백 2017. 9. 1. 15:40
abstract class

package chapter07; public abstract class Phone { abstract void call(); //메소드가 추상이면 그 클래스는 추상타입이어야합니다. 하나라도! void powerOn() { System.out.println("전원이 켜짐..."); } void powerOff() { System.out.println("전원이 꺼짐..."); } /*public static void main(String[] args){ Phone p = new Phone(); }*/ } 메소드 중에 하나라도 추상타입이라면 그 메소드를 갖고 있는 클래스는 반드시 추상타입이어야 한다. 부모가 가지고 있는 추상 메소드를 받아서 사용하고 싶다면 그것을 사용하는 자식은 반드시 재정의(Overrid..

배움과 복습 2017. 9. 1. 15:30
Abstract class에 대해

배움과 복습 2017. 9. 1. 15:13
2017-09-01 금요일: 7.상속

1. has a 관계class B{A a = new A();a.method1();} A a = new A(); //가능B b = new B(); //가능A aa = new B(); //불가능B bb = new A(); //불가능 2. is a 관계class B extends A {method1();}A a = new A();B b = new B();A aa = new B(); //여기까지 가능!B bb = new A(); //불가능 =>자식타입의 부모? 만들어질 수 없습니다. 3. class / interface(완전추상) class A extends B //끝 : 단일추상 interface a extends interface1, interface2, ... //다중추상 가능 4. implementsCl..

배움과 복습 2017. 9. 1. 10:17
Getter와 Setter, 그리고 private타입

/* * Getter와 Setter메소드 p.265 * date: 2017-08-30 (CSH) */ package chapter06; public class GetSetTest { privateString name; privateString address; privateString phone; privateint age; privatechar gender; privatedoubleheight; //반드시 소문자 set이어야한다 (게터/셋터의 규칙 ㅇㅇ) public void setName(String name) { this.name = name; } public void setAdress(String address) { this.address = address; } public void setPhone..

배움과 복습 2017. 8. 31. 16:10
무료 호스팅 신청했음

http://blanche123.dothome.co.kr/

배움의 독백 2017. 8. 31. 13:57
이전 1 2 3 4 5 6 7 다음
이전 다음
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
  • 작은설탕의 달콤한 인생로그
TAG
  • 복수행 함수
  • FileChannel
  • 중첩 클래스
  • 멤버 클래스
  • NVL2()
  • CLASS
  • Interface
  • Maven Project
  • 타입변환과 다형성
  • !(not)
  • SQL Operator
  • Generic Type
  • MONTH_BETWEEN
  • IS RECORD
  • GROUP BY절
  • NVL()
  • casring
  • 상속
  • IN(var1 var2 var3)
  • 계층형 쿼리
  • tables in htmll
  • 데이터 딕셔너리
  • hierarchical query
  • DI(의존성 주입)
  • SELECT절 명령어
  • 테이블 데이터 복사
  • DECODE()
  • z-dindex
  • 로컬 클래스
  • implements
more
«   2025/07   »
일 월 화 수 목 금 토
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 31
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바