This takes experience, I'm afraid. When you conceive of solutions to a problem, you may think in terms of class hierarchies, or you may think in terms of what information goes in, what comes out, how long does it need to be persistent in between. I recommend the latter.
In any case, what people have said is mostly good advice - keep it clean and simple, and get rid of performance problems as they come in, because they will come in.
Where I part company is I don't find measurement very helpful for locating performance problems compared to this method.
But whatever method you use, hopefully experience will teach you what NOT to do in developing software. I've been solving performance problems for a long time, and these days, the single most popular performance killer is galloping generality. Nobody likes to hear their favorite beliefs questioned, but time after time, especially in big software, what is killing performance is using bazookas to swat flies.
Oddly enough, the reason often given for this over-design is guess what? Performance.
In whatever venue you may have learned to program, chances are you've learned all about academic things like sophisticated data structures, abstract class hierarchies, tricky compiler optimization techniques - all the latest stuff that's fun and interesting to know, and that I like as much as anybody. What they didn't teach you is when to use it, which is almost never.
So what I recommend you do is: Get the experience. It is the best teacher.