Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- might have p.p
- for ing
- 명절 표현
- if조건절
- by any chance
- metascore
- 변수
- gameQA
- know
- java
- I'm glad
- Realtime Rendering
- it's a good thing
- 형변환
- 명세기반테스트
- happen to
- by until
- sort함수
- keep -ing
- 코로나19
- C++
- ISTQB
- relif
- html
- 제5인격
- 게임QA
- counldn't have
- UE4
- end up ing
- continue to
Archives
- Today
- Total
목록abstract (1)
Records rather than Memories
abstract
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 package org.opentutorials.javatutorials.abstractclass.example1; abstract class A{ public abstract int b(); //본체가 있는 메소드는 abstract 키워드를 가질 수 없다. //public abstract int c(){System.out.println("Hello")} //추상 클래스 내에는 추상 메소드가 아닌 메소드가 존재 할 수 있다. public void d(){ System.out.println("world"); } } public class AbstractDemo { public static void main(String[] args) { A ob..
Software/JAVA
2019. 10. 23. 18:04