Early binding in Java
I need to find two kinds of method calls that use early binding in Java.
I would like to know if my ideas are correct:
I think overloaded functions uses early binding, because the compiler looks at the types of the parameter variables.
I think static functions uses early binding because they are outside of a class.
I think functions define as final uses early binding because they do not change.
Does that make sense? Are those correct method calls that uses early binding please?
Thank you for your help.