Java syntax question. I have been writing in this language for a relatively long time. But recently I realized that I did not know how to create an instance of an internal class from the outside, if this class is non-static. For example, I have a class:
class Outer { Outer() { } ... class Inner { Inner() { } ... } }
How to create an instance of the class Inner
from an external class?