일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자바 야구게임
- full text indexing
- 다운캐스팅
- 로또
- 전자정부
- 전체
- 야구게임
- 상속
- 이클립스
- 다형성
- Random
- while
- 25가지 효율적인 sql작성법
- Login with OAuth Authentication
- 상속예제
- 페이징
- 스프링
- 자바
- 업캐스팅
- 전체텍스트
- IBatis procedure
- jquery
- Validations
- angular2
- 가변인자
- 단축키
- 형변환
Archives
- Today
- Total
nalaolla
Method 예제 3 (활용예제) 본문
728x90
반응형
- package test.com;
- public class Test02Method {
- public void test1() {
- System.out.println("test");
- }
- public void test2(int a) {
- System.out.println(a);
- }
- public int test3() {
- System.out.println("test");
- int resultInt = 44;
- return resultInt;
- }
- public String test4(int[] sus) {
- System.out.println(sus.length);
- return "KIM";
- }
- public static void main(String[] args) {
- System.out.println("method2...");
- Test02Method tm02 = new Test02Method();
- tm02.test1();
- tm02.test2(456);
- int x = tm02.test3();
- System.out.println(x);
- int[] sus = new int[]{1,2,3,4,5};
- String firstName = tm02.test4(sus);
- System.out.println(firstName);
- }
- }
728x90
반응형
'JAVA > 8. Method1' 카테고리의 다른 글
Method 예제 5 (0) | 2016.06.22 |
---|---|
Method 예제 4 (0) | 2016.06.22 |
Method 예제 2 (Method 정리) (0) | 2016.06.22 |
Method 예제 1 (예외처리) (0) | 2016.06.22 |