I'm assuming that reading code from another class is marginally slower than reading code from within the same class, since Java needs to actually get that .Java-file to run the code? As a self-taught, this is one of those obscure (and perhaps completely unimportant) things that I've yet to see mentioned anywhere specifically (to get confirmed). Thinking logically though, it sounds like it's not even the least important performance-wise.
So to be sure, are there any cases at all (performance-wise) where reading from the same class is preferred over reading from another class, or am I "go-for-launch" however I please and just structure my code according to cleanliness and ease of reading?
Thanks in advance.