How to access private methods

My understanding is that private means being private to an instance. Private methods can't be called with an explicit receiver, even self. To call a private method, I have to go through a process l...