vote up 3 vote down star

I've run across many examples of Core Foundation variables named k + someVariableNameHere or k + APILibraryName(2Char) + someVariableNameHere. What does this prefix K indicate?

Examples include:

kGLPFAStereo
kCollectionLockBit
kSetDebugOption

flag
+1 Thanks for the question. I was wondering about this myself just yesterday. – sigjuice Mar 24 at 1:24

3 Answers

vote up 4 vote down check

The k means constant in hungarian notation... see http://stackoverflow.com/questions/472103/lower-case-k-in-cocoa/472118#472118.

link|flag
vote up 1 vote down

This is a naming convention from the early days of macintosh programming. It indicates a constant.

link|flag
vote up 1 vote down

According to this page from the Apple docs, k just indicates that the value is a constant.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.