Mike Starr
Mike Starr

Reputation: 43

What are the most commonly used words for use in identifiers?

Naming variables, methods, and classes is hard. Having a good vocabulary to choose from can make things easier, and choosing commonly used words can make your programs more easily understood by other programmers.

For example:

Are there any compiled lists of the most commonly used words in programs to aid in name construction?

Some lists I have found so far:

Upvotes: 1

Views: 160

Answers (1)

Nealon
Nealon

Reputation: 2243

For java: link

For c++: link

For c#: link

Googling "reserved words in [insert language here]" will get you the same thing for just about any language.

Upvotes: 1

Related Questions