영호

[JAVA] instance method vs static method 본문

Language/JAVA

[JAVA] instance method vs static method

0h0 2022. 10. 4. 16:56

instance method란

  • class의 instance를 생성하고, 해당 instance를 통해 호출할 수 있는 method입니다.

static method란

  • 컴파일 시점에 메모리에 올라갑니다.
  • instance 생성없이 클래스를 통해 호출할 수 있는 method입니다.
  • instance변수를 사용할 수 없습니다.
    • instance변수란 말 그대로 동적으로 생성된 instance의 변수이기 때문에 컴파일 시점에 존재하지 않습니다.

static method주의점

  • GC(Garbage Collector)가 메모리를 해제하지 않기 때문에, 너무 많이 사용하면 메모리 측면에서 문제가 생길 수 있습니다.
  •  
Comments