The final
modifier in Java does not provide for early binding of the method (at the compilation stage), only does not allow to determine the method in the heir with the same signature, including overriding the corresponding ancestor method, is this so?
Question: Does Java previously bind, that is, when already at the compilation stage, the method call is matched with the code to be executed?