Overloaded method

A method that you call with different sets of parameter lists. Overloaded methods cause naming conflicts which must be resolved to avoid runtime errors when testing Java applications.

Example of an overloaded method How Java support resolves the naming conflict
setBounds( int i1, int i2, int i3, int i4) setBounds( int i1, int i2, int i3, int i4)
setBounds( RECT r1) setBounds_2( RECT r1)