[JAVA] 클래스 메서드 vs 인스턴스 메서드
static이 붙으면 클래스 메서드라 불르고, 붙어 있지 않으면 인스턴스 메서드라 부른다. 클래스 메서드는 객체를 생성하지 않고도 클래스이름.멤버변수 형태로 호출이 가능하다. 하지만 인스턴스 메서드의 경우에는 객체를 생성해야지만 호출할 수 있다. 간단한 예제로 확인! 1. 클래스 메서드를 호출하는 방법 -> 클래스이름.메서드명 형태로 호출 1234567891011121314151617public class Test { public static void main(String args[]) { System.out.println(staticIns.st_show()); } static class staticIns { int a=10; static int b = 20; int show() { return a; }..
2017.11.21