Java / OOPS Concepts and its implementation in Java
In a class, a method is overloaded and One form is declared static while another form is non-static. Is that method properly overloaded?
Yes. Compiler checks only method signature to validate if a particular method is overloaded or not. It does not check static or non-static nature of the method.
More Related questions...