Java: How to extend a inner class from different file

59 Views Asked by At

say I have these two classes in a single file where class A is a top level class:

class A{
     class B{
     } 
}

how to make another top level class, say class C, extend class B without making B static?

0

There are 0 best solutions below