So “stuffonfire” blogged about “get” methods, here.
Chris Hanson then covered Cocoa’s convention for get.
Just thought I’d mention that the Win16/Win32 API used Get methods all over the place. When someone (I’d love to know who) modified that to come up with the OS/2 API, they made Get mean acquire, and substituted Query when the method was a simple return-a-value type.
So you’d have things like GetMemory, GetFileHandle (I forget exact examples, there weren’t many Get APIs), and QueryWindowCount, QueryThis, QueryThat, and so on. I liked Query (it was somehow easy on my eyes), but it meant everyone had two more characters to type for 99% of API calls.
So it’s great to have property style accessors, no Query or Get required!