반응형
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 |
Tags
- Daemon()
- Linux세팅
- interrupt()
- MemoryStream
- 상관 서브 쿼리
- include 지시자
- 리눅스셋팅
- first-child
- include액션태그
- Linux셋팅
- StringReader
- 아이디중복
- StringWriter
- ID중복
- 리눅스세팅
- char[] String 형변환
- String char[] 형변환
- 상관서브쿼리
- 스레드그룸
- 동기화
- interrupted()
- ThreadGroup()
- 메모리스트림
- include지시자
- InputDialog
- sleep()메소드
- isinterrupted()
- first-of-child
- 표현 언어
- ObjectInputStream
Archives
- Today
- Total
목록final (1)
다연이네
[days16] final
final - 클래스 앞 : 자식클래스를 가질 수 없는 최종 클래스 - 메소드 앞 : 재정의 할 수 없는 최종 메소드 (오버라이딩 불가) - 변수(필드, 지역변수) 앞 : 상수화 public class Ex03 { public static final int max_value = 100; //static final 위치 바뀌어도 됨 //static 클래스당 하나 만들어지는 클래스 변수 // final 상수화, 한번 값 할당하면 바뀌지 않고 고정된 값을 가짐 public static void main(String[] args) { //상수 //main()메소드 안에 선언된 [지역변수] final double PI = 3.141592; plusNumber(100); //Bottom b = new Bottom(..
Java
2020. 10. 17. 22:01