Computer Science, asked by bungsoboro111, 9 months ago

What is
nested
class?​

Answers

Answered by suyash8769861272
1

The Java programming language allows you to define a class within another class. Such a class is called a nested class and is illustrated here:

class OuterClass {

   ...

   class NestedClass {

       ...

   }

}

pls mark me brainliest  :)

Similar questions