Programming/Java
[JAVA 메소드]멤버,클래스메소드
-멤버/인스턴스(non-static) 메소드 -객체를 생성 후 호출해야한다 -멤버변수/클래스 변수 모두 접근할 수 있다. - 클래스(static)메소드 - 객체 생성 없이, 클래스 명으로 직접 호출하는 메소드 - 클래스변수에만 접근할 수 있다. public class MethodStudy { int a = 100; static int s = 99; public static void main(String[] args) { MethodStudy study = new MethodStudy(); study.test1(); MethodStudy.test2(); } /** * 멤버메소드 * */ public void test1() { System.out.println(a); System.out.println(s);..
2022. 3. 17. 10:58