일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- #JAVASCRIPT
- #1차원배열
- hyperledger transaction
- 토큰경제
- html video
- #성적관리프로그램
- #3차원배열
- border-box
- html youtube
- mac terminal command
- html id
- html code
- html5 new tag
- git flow
- relative path
- html multimedia
- html charset
- #binary
- html object
- #C++ 연산자함수오버로딩
- #bubbleSort
- #C++ has~a
- 하이퍼레저패브릭
- docker example
- #2차원배열
- #다차원포인터
- #CallByAddress
- html plug-in
- #자바상속#자바이즈어#is~a
- #android activity
- Today
- Total
A sentimental robot
public class Test01 extends Thread { // 스레드 쓰는 방법1. Thread 객체 상속받기 public static void main(String[] args) { Test01 t01 = new Test01(); t01.start(); // 대기상태 ; runnable state } } public class Test02 implements Runnable { // 방법2. Runnable interface를 상속 받아서 스레드가 아니라 스레드를 쓸 수 있는 환경을 만든다. public static void main(String[] args) { Test02 t02 = new Test02(); // t02.start(); t02는 스레드가 아니기 때문에 못부름 Thread t..
Inner class 란? 클래스 안에 클래스를 가지고 있는 구조 has a 관계는 항상 객체가 독립적이지만 inner class는 애초에 클래스 안에 클래스를 가진다. outer class의 ( private이든 뭐든 )멤버를 자유롭게 사용할 수 있다. 이벤트 처리할때 많이 쓰인다. outer class를 생성한 후, inner class를 따로 생성해야 한다. 종류 1) member class( instance class ) -> 가장 많이 쓰임 2) static class 3) local class 4) anonymous class -> 가장 많이 쓰임, 이벤트 처리 시 주로 사용, 추상클래스와 같이 사용됨 member class public class InnerTest { private int a..
Interface - 상수와 추상메소드로만 이루어져 있다. - 다중 상속이 가능하다. public interface Aa extends B { // 인터페이스끼리도 extends로 상속 가능, but 다중상속가능 final static int A = 10; // 상수니까 변수이름이 대문자이다. final은 생략가능, 상수는 선언과 동시에 초기화한다. abstract void disp(); // 추상메소드 abstract 생략가능 } public interface B { abstract void disp2(); } public class CC implements Aa, B { // 인터페이스를 상속받을 때는 implements 를 쓴다. 인터페이스는 다중상속이 가능하다. @Override public vo..
public abstract class Memory { protected int[] array; // protected 접근지정자는 상속받은 자식들만 쓸 수 있음 protected int top; public Memory(){ array=new int[10]; top=0; } public void push(int num){ array[top++]=num; } public abstract int pop(); // 추상 메소드 } public class MyStack extends Memory { @Override public int pop() { return array[--top]; } } public class MyQueue extends Memory { private int front; public M..