일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- hyperledger transaction
- #C++ 연산자함수오버로딩
- #binary
- html code
- html plug-in
- border-box
- #bubbleSort
- html multimedia
- #자바상속#자바이즈어#is~a
- #3차원배열
- docker example
- 토큰경제
- #2차원배열
- #성적관리프로그램
- html id
- html youtube
- html charset
- relative path
- #다차원포인터
- #android activity
- #1차원배열
- html object
- #C++ has~a
- html5 new tag
- git flow
- mac terminal command
- 하이퍼레저패브릭
- #CallByAddress
- #JAVASCRIPT
- html video
Archives
- Today
- Total
목록#stack#queue (1)
A sentimental robot
추상클래스를 이용한 스택,큐!
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..
Java
2017. 12. 29. 11:10