반응형
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에 의해 구현될 수 있다.
반응형
'CS 101 > grammar' 카테고리의 다른 글
[Java] Overriding & Overloading (0) | 2023.05.31 |
---|---|
[Java] Interface (0) | 2023.05.31 |
Java(ch5. Defining Class 2)-Static, References,usingMisusingRef,PackagesJavadoc (0) | 2023.05.31 |
Java(ch4)-class, information hiding, overloading, constructors (0) | 2023.05.31 |
Java(ch3) - Loops, random numbers (0) | 2023.05.31 |