I have to say, top of the list has to be function pointers in C.
I'd missed the class and copied the notes from a friend. I wrote an example and fireworks went off in my head, suddenly it occurred to me - all at once - just how incredibly powerful they were, with these you could write ANYTHING. Compilers, operating systems etc. it completely changed how I looked at code, and in my mind made everything achievable.
Later that year I implemented a project using what I now realise was a primitive form of Polymorphism. It took less than a quarter of the code the rest of the class used. All thanks to (deep announcers voice) the power of Function Pointers.
Years later - after learning some OO - on the job I was introduced to UML and Design patters. Again suddenly I had a vocabulary that allowed me to communicate all the cool ideas I was having e.g.
Instead of saying
- "What we need is a
thing and you'd have a couple of
different ones, but like you'd only
be using one at a time and what it
does is create the specific objects
for you and don't worry it'll be
fine I know what I'm talking about"
I could say
and everyone would know what I was talking about (and if not, I'd hand them my design patterns book, and they could RTFM)