Tagged Questions

Naming conventions refer to general rules governing names assigned to programming constructs such as variables and methods. These conventions facilitate improved maintainability of code by enforcing naming consistency across disparate modules.

learn more… | top users | synonyms

139
votes
71answers
7k views

What's the best name for a non-mutating “add” method on an immutable collection? [closed]

Sorry for the waffly title - if I could come up with a concise title, I wouldn't have to ask the question. Suppose I have an immutable list type. It has an operation Foo(x) which returns a new ...
106
votes
34answers
22k views

Table Naming Dilemma: Singular vs. Plural Names

Convention has it that table names should be the singular of the entity that they store attributes of. I dislike any T-SQL that requires square brackets around names, but I have renamed a Users ...
91
votes
43answers
4k views

Anyone else find naming classes and methods one of the most difficult part in programming?

So I am working on this class that's suppose to request help documentation from a vendor through web service. I try to name it DocumentRetriever, VendorDocRequester, DocGetter, but they just doesn't ...
87
votes
10answers
2k views

Why are the built in functions in PHP named so randomly?

It seems that there is no real pattern to the way functions are named, str_replace, strrpos, strip_tags, stripslashes are just some. Why is this the case? EDIT - this wasn't meant as a "troll" type ...
86
votes
22answers
24k views

Database, Table and Column Naming Conventions?

Whenever I design a database, I always wonder if there is a best way of naming an item in my database. Quite often I ask myself the following questions: Should table names be plural? Should column ...
56
votes
11answers
18k views

Interface naming in Java

Most OO languages prefix their interface names with a capital I, why does Java not do this? What was the rationale for not following this convention? To demonstrate what I mean, if I wanted to have ...
55
votes
36answers
8k views

Why shouldn't I use “Hungarian Notation”?

I know what Hungarian refers to - giving information about a variable, parameter, or type as a prefix to its name. Everyone seems to be rabidly against it, even though in some cases it seems to be a ...
54
votes
12answers
2k views

Naming Classes - How to avoid calling everything a “<WhatEver>Manager”?

A long time ago I have read an article (I believe a blog entry) which put me on the "right" track on naming objects: Be very very scrupulous about naming things in your program. For example if my ...
53
votes
20answers
14k views

Underscore or camelcase?

I'm very unsure when it comes to naming conventions. I really want to adopt a stringent naming convention for class-names, variables, function-names, html-attributes or database schemata. But whenever ...
51
votes
7answers
9k views

What are some popular naming conventions for Unit Tests?

General Follow the same standards for all tests. Be clear about what each test state is. Be specific about the expected behavior. Examples 1) MethodName_StateUnderTest_ExpectedBehavior Public ...
50
votes
11answers
24k views

Why would a JavaScript variable start with a dollar sign?

I quite often see JavaScript with variables that start with a dollar sign. When/why would you choose to prefix a variable in this way? (I'm not asking about $('p.foo') syntax that you see in jQuery ...
45
votes
8answers
15k views

C# naming convention for constants?

private const int THE_ANSWER = 42; or private const int theAnswer = 42; Personally I think with modern IDEs we should go with camelCase as ALL_CAPS smells "Hungarian". What do you think?
41
votes
20answers
8k views

URLs: Dash vs. Underscore

Should it be /about_us or /about-us? From usability point of view, I personally think /about-us is much better for end-user yet Google and most other websites (and javascript frameworks) use ...
40
votes
13answers
3k views

What strategy do you use for package naming in Java projects and why?

I thought about this awhile ago and it recently resurfaced as my shop is doing its first real Java web app. As an intro, I see two main package naming strategies. (To be clear, I'm not referring to ...
39
votes
21answers
2k views

Most awkward/misleading method in the .Net API? [closed]

In light of this question I thought it'd be really neat to have a similar question about C#/.Net. So, what is the most awkward or misleading method name of the .Net and/or C# API?
39
votes
17answers
11k views

What is your naming convention for stored procedures?

I have seen various rules for naming stored procedures. Some people prefix the sproc name with usp_, others with an abbreviation for the app name, and still others with an owner name. You shouldn't ...
38
votes
14answers
12k views

Hyphens or underscores in CSS and HTML identifiers? [closed]

As both hyphen (-) and underscore (_) are valid characters in CSS and HTML identifiers, what are the advantages and disadvantages using one or the other? I prefer writing CSS class names with hyphens ...
37
votes
5answers
5k views

Why are exclamation marks used in Ruby methods?

In Ruby some methods have a question mark (?) that ask a question like "include?" that ask if the object in question is included, this then returns a true/false. But why do some methods have ...
36
votes
3answers
2k views

Haskell: why the convention to name a helper function “go”?

I see go a lot when reading Haskell material or source, but I've never been really comfortable about it - (I guess it has the negative connotation of "goto" in my mind). I started learning Haskell ...
36
votes
11answers
7k views

What is the naming convention in Python for variable and function names?

Coming from a C# background the naming convention for variables and method names are usually either CamelCase or Pascal Case: // C# example string thisIsMyVariable = "a" public void ThisIsMyMethod() ...
35
votes
21answers
3k views

What are the best naming conventions you've used? [closed]

I was wondering how people name variables, objects, and function names with all the combination's out there; camel-case, pascal, using underscores, all caps for statics etc.... A good naming ...
35
votes
8answers
2k views

Why are many ports of languages to .net prefixed with 'Iron'?

Was discussing over lunch why several ports of languages to the .net framework are prefixed with 'Iron'. e.g. IronPython IronRuby IronLisp IronScheme IronPHP Anyone out there know? (language ...
35
votes
9answers
11k views

C# naming convention for enum and matching property

I often find myself implementing a class maintaining some kind of own status property as an enum: I have a Status enum and ONE Status property of Status type. How should I solve this name conflict? ...
35
votes
12answers
9k views

Unit test naming best practices?

What are the best practices for naming unit test classes and test methods? Previously I don't know if this is a very good approach but currently in my testing projects I have a one to one ...
34
votes
12answers
28k views

Best practices for naming conventions

I recently started these naming conventions... all functions & variables = camelCase constants with define() = ALL_CAPS_AND_UNDERSCORES Is there an official naming convention for PHP?
32
votes
29answers
3k views

Are variable prefixes (“Hungarian notation”) really necessary anymore?

Since C# is strongly typed, do we really need to prefix variables anymore? e.g. iUserAge iCounter strUsername I used to prefix in the past, but going forward I don't see any benefit.
32
votes
22answers
3k views

Naming of ID columns in database tables

I was wondering peoples opinions on the naming of ID columns in database tables. If I have a table called Invoices with a primary key of an identity column I would call that column InvoiceID so that ...
30
votes
5answers
9k views

javascript naming conventions

I know there is a lot of controversy (maybe not controversy, but arguments at least) about which naming convention is the best for JavaScript. How do you name your variables, functions, objects and ...
29
votes
2answers
609 views

Good examples of .NET (C#) open source projects ported to Java? ( C# -> Java ) [closed]

I notice several well-known projects in java that were ported to C# .NET. Some examples: Hibernate -> NHibernate JUnit --> NUnit Ant --> NAnt Lucene --> Lucene.Net, NLucene iText --> iTextSharp ...
28
votes
8answers
5k views

What does a type followed by _t (underscore-t) represent?

This seems like a simple question, but I can't find it with the Stack Overflow search or Google. What does a type followed by a _t mean? Such as int_t anInt; I see it a lot in C code meant to deal ...
26
votes
7answers
3k views

Should I stop fighting Visual Studio's default namespace naming convention?

I'm working on an MVVM project, so I have folders in my project like Models, ViewModels, Windows, etc. Whenever I create a new class, Visual Studio automatically adds the folder name to the namespace ...
26
votes
16answers
4k views

Best practices for C# GUI naming conventions?

GUIs, whether written in WinForms or XAML, seem to have the most widely differing naming conventions between projects I see. For a simple TextBox for a person's name, I've seen various naming ...
25
votes
8answers
5k views

Enum Naming Convention - Plural

I'm asking this question despite having read similar but not exactly what I want at http://stackoverflow.com/questions/495051/c-naming-convention-for-enum-and-matching-property I found I have a ...
25
votes
12answers
2k views

Is “username” one word or two?

While trying to cleanup an application's API, I found myself scratching my head... What should I call the variable for a user's name "username", or "userName"?
25
votes
24answers
4k views

How do you name your many-to-many relationship tables?

I've seen a few different naming schemes throughout multiple languages when it comes to many-to-many relationships, so I was wondering: what naming scheme do you use for naming these relationships? ...
24
votes
17answers
1k views

What is the most misleading method in the Java Base API? [closed]

I was recently trying to convert a string literal into a boolean, when the method boolean Boolean.getBoolean(String name) popped out of the auto-complete window. There was also another method (boolean ...
24
votes
28answers
3k views

What is an ideal variable naming convention for loop variables?

If you are writing a simple little loop, what should you name the counter? Provide example loops!
23
votes
12answers
2k views

C# .NET instance variable naming convention?

I'm doing a small internship at a business and in their code I find classes that are named like this: public class FlagsConfig { private static FlagsConfig _instance; } Is the _instance a ...
23
votes
5answers
780 views

Naming conventions for cookies in PHP

When it comes to cookies and PHP, what naming style do you use? Here are a few options I can think of: lower_case CamelCase Underscore_Camel_Case UPPER_CASE
22
votes
25answers
4k views

Why should (or shouldn't) I prefix fields with 'm_' in C#? [closed]

I've been a C++ programmer for almost 12 years now. When I moved to C# two years ago I brought with me the same coding style I was so accustomed to. Soon I realized how much useless it was in C# and ...
22
votes
8answers
5k views

count vs length vs size in a collection

From using a number of programming languages and libraries I have noticed various terms used for the total number of elements in a collection. The most common seem to be length, count, and size. eg. ...
21
votes
9answers
602 views

Are there conventions on how to name resources?

Are there conventions how to name resources in Android? For example, buttons, textViews, menus, etc.
21
votes
4answers
6k views

Naming conventions for abstract classes

I distinctly remember that, at one time, the guideline pushed by Microsoft was to add the "Base" suffix to an abstract class to obviate the fact that it was abstract. Hence, we have classes like ...
21
votes
4answers
6k views

Foreign Key naming scheme

I'm just getting started working with foreign keys for the first time and I'm wondering if there's a standard naming scheme to use for them? Given these tables: task (id, userid, title) note (id, ...
20
votes
4answers
288 views

Why are dashes preferred for CSS selectors / HTML attributes? [closed]

In the past I've always used underscores for defining class and id attributes in HTML. Over the last few years I changed over to dashes, mostly to align myself with the trend in the community, not ...
20
votes
22answers
1k views

Java method naming conventions: Too many getters

Why do Java method names use the "get" prefix so extensively? At least in my Java programs there are a lot of methods with names starting with the word "get". The percentage of get-methods is ...
20
votes
10answers
1k views

Does functional programming mandate new naming conventions?

I recently started studying functional programming using Haskell and came upon this article on the official Haskell wiki: How to read Haskell. The article claims that short variable names such as x, ...
20
votes
9answers
4k views

Should a “static final Logger” be declared in UPPER-CASE?

In Java, static final variables are constants and the convention is that they should be in upper-case. However, I have seen that most people declare loggers in lower-case which comes up as a violation ...
20
votes
24answers
6k views

Why use prefixes on member variables in C++ classes

A lot of C++ code uses syntactical conventions for marking up member variables. Common examples include m_*memberName* for public members (where public members are used at all) _*memberName* for ...
19
votes
7answers
627 views

PHP coding standards at work: Insane, or am I?

I prefer coding standards to be logical. This is my argument for why the following set of standards are not. I need to know one of two things: (1) why I'm wrong, or (2) how to convince my team to ...

1 2 3 4 5 29