A)
->Associating a method call with method definition is known as binding.
->if binding is done by the compiler at compile time , it is known as static / early / compile time binding.
->if the resolution of the method call happens at runtime by JVM, it is known as dynamic / runtime / late binding.
Comments
Post a Comment