Java: println

HS·2021년 1월 25일
0

Java

목록 보기
1/5
package test.com;

public class Test01hello {
	
	public void test(){  // public => 경로가 다른 곳에서도 사용 가능
		System.out.println("test()...");
	} // c와 유사하게 타입 명시 필요 (void는 리턴값 필요X)
	
	public int testSum(){  
		System.out.println("testSum()...");
		return 300;
	} 
	
	public static void main(String[] args) {
		
	System.out.println("hello java");
	
	Test01hello t = new Test01hello();  // 클래스명과 동일하게 타입명을 지정해야 함
	t.test();
	System.out.println(t.testSum());
	
	} // end main()

} // end class

출력물

0개의 댓글