Hi,
What is the difference between subclasses and inner classes? I believe both does the same job but there is difference in their syntax. Please confirm.
Chao.
Printable View
Hi,
What is the difference between subclasses and inner classes? I believe both does the same job but there is difference in their syntax. Please confirm.
Chao.
No. A subclass is class which inherits a method or methods from a superclass. like:
HybridCar is a subclass of Car.Code:class Car{
}
class HybridCar extends Car {
}
innerclass is a class defined inside another class. they are a type of "nested classes"
read here for a better definition.Code:class OuterClass {
...
class NestedClass {
...
}
}