일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 야구게임
- 로또
- 다형성
- full text indexing
- 이클립스
- jquery
- 자바
- while
- 스프링
- Full text
- 전체
- 상속예제
- 가변인자
- 자바 야구게임
- 전체텍스트
- 상속
- Random
- Validations
- 형변환
- 25가지 효율적인 sql작성법
- Login with OAuth Authentication
- 업캐스팅
- 페이징
- 단축키
- 다운캐스팅
- 전자정부
- IBatis procedure
- angular2
- 추상클래스
Archives
- Today
- Total
목록JAVA/13. StaticImport (1)
nalaolla
Static Import 예제 1
package java13staticImport; import static java.lang.Math.*; public class Test01staticImport { public static void main(String[] args) { System.out.println("static import.."); //원주율값을 갖는 객체를 쓰고싶다.. System.out.println(Math.PI); System.out.println(PI); System.out.println((int)(random() * 10)); } }
JAVA/13. StaticImport
2016. 6. 29. 15:18