can some explain the diff betwn two? thanks in advance
Anonymous
Ranch Hand
Joined: Nov 22, 2008
Posts: 18944
posted
0
late binding and dynamic binding both are same,late binding or dynamic binding occurs at the run time for every java method, while the early binding occurs for only final methods, hope this helps! regds, Shiva ------------------
...which is why early binding is also called static binding. It also occurs for private methods. And for all member variables, regardless of other modifiers. (I know no one was talking variables - I'm just giving added info.)