Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

CamelCase

You are here: irt.org | FOLDOC | CamelCase

<programming> The practice of concatenating words with either all words capitalised (e.g. "ICantReadThis" - sometimes called "UpperCamelCase" or "PascalCase") or all except the first ("iCantReadThis" - called "lowerCamelCase"). It is used in contexts where space characters are not allowed, such as identifiers in source code.

Modern best practice separates words in identifiers with underscore for readability (like_this_example). CamelCase is probably a historical throw-back to systems that had no underscore or when the length of identifiers was constrained either by the programming language or by the width of computer displays. Unfortunately it has infected many projects, origanisations and programming languages such as Java where the uniniated create identifiers like "MemberSubmissionAddressingWSDLParserExtension".

(2014-12-02)

Nearby terms: CAM-6 « CAMAL « Cambridge Lisp « CamelCase » Camelot Library » camera ready » CAMIL

FOLDOC, Topics, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, ?, ALL

©2018 Martin Webb