class A
{
void test(int a)
{
System.out.prin tln("Normal .... Class A");
}
}
class B extends A
{
int test(int a)
{
System.out.prin tln("Class B");
}
}
{
void test(int a)
{
System.out.prin tln("Normal .... Class A");
}
}
class B extends A
{
int test(int a)
{
System.out.prin tln("Class B");
}
}
i think .. it is due to method signature mismatching or anything else ... plz explain and if possible plz explain me in details method signature .......
any help is most welcome ....
Comment