Example :
You have a class Car , which contains lots of objects.. One of them is really technical, and there are maybe 1-2 people in the world who know what this mysterious and wierd object is. Lets call this object type T
Now, if you are going to explain the class Car to anyone who does not know about T. Most of them understand that there is something that performs a useful function : F , but they have no idea that there is something called T.
This is what an inner class is, something that is required for the class that the inner class is in, but not required to be known by anyone else :)
Happy coding!