Most of the JDK inner classes I know of are `priva...
# java-and-jvm
m
Most of the JDK inner classes I know of are
private
. I'm not sure if that matters. But some of the Collections API appears to have a non-private inner class for a
Spliterator
. They're
static
, so not sure if that matters either. For example,
java.util.ArrayList
has one called
ArrayListSpliterator
.
👍 1