Manoj Bisht

Manoj Bisht

  • NA
  • 145
  • 0

Two abstract classes with same method name

Sep 26 2008 2:05 AM
How to provide the different implementations to two abstract classes methods and methods name are same

Example

abstract class abstA
{
public abstract void get(int num);
}

abstract class abstB
{
public abstract void get();
}

How to use the get() method of two abstract classes

Answers (1)