interface Hello {
abstract class A {
void show() {
B b = new B();
b.dis();
}
}
class B {
void dis() {
System.out.println("HIiiiiiiii");
}
}
}
But this is not working please any one guide me how I can access this because this requirement should not be changed..