본문 바로가기

CS 101/grammar

[Java] Binding

반응형

early binding

  • Method definition과 method invocation의 연결이 compile time에 일어남
    -Early binding objects are basically a strong type objects or static type objects.

late binding

  • Method definition과 method invocation의 연결이 그 method가 call 된 순간 일어남
    -하나의 method invocation에 여러 의미를 가지게 하는 메카니즘은 polymorphism을 말하며, late binding에 의해 구현될 수 있다.
반응형