Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
6answers
614 views

Is there a technical difference between the terms “length” and “size” (in programming, of course)?

In Java in particular, on Strings, you call string.length(), whereas in Lists you call list.size(). Is there a technical difference between the two terms, seeing as a String is really just a list of ...
5
votes
4answers
978 views

Use of special characters in function names

In Ruby, a standard convention is to use a question mark at the end of a method name to indicate the method returns a boolean result: [].empty? #=> true Another standard convention is to end a ...
3
votes
4answers
139 views

Bad method names and what it says about code structure

(Apologies in advance if this is a re-post but I didn't find similar posts) What bad method name patterns have you seen in code and what did it tell you about the code. For instance, I keep seeing: ...
3
votes
10answers
622 views

Is there a particular naming convention for Java methods that throw exceptions?

I'm tempted to add a suffix like "Ex" to differentiate methods (with similar signatures) that throw Exceptions from those that don't. Is there such a convention?
3
votes
11answers
184 views

What resources do you use to help you decide upon useful names for your classes and methods?

With the exception of this site, what resources are out there that I don't know about for naming of things in your code? We all know that a good name can really focus your understanding of something ...
1
vote
2answers
84 views

How to get the name of the method in string format

I am calling Some_other_method inside Some_method. I want to pass the name Some_method to Some_other_method in string format. How can I do it? What should I put instead of question mark as a ...
1
vote
1answer
62 views

How to get real method name istead of .ctor?

Hi i have method getting the name of calling method: public static string GetMethodName() { System.Diagnostics.StackTrace trace = new System.Diagnostics.StackTrace(); return ...
0
votes
2answers
81 views

G++ compiler cannot distinguish variable and function with the same name? [closed]

Possible Duplicate: Class method and variable with same name, compile error in C++ not in Java? The G++ compiler would complain when my class member name and member function name are the ...
0
votes
3answers
58 views

How to name method that can only return one entry. (C#, ASP.NET)

I have a method, that returns a List of strings. For some reason I do not allow the method to return a List with more than one string in it. Is it better to name such a method GetEntry or GetEntries?
0
votes
2answers
29 views

Method naming: including or excluding the parameter type with multiple similar methods

When faced with a class that has multiple similar methods operating on different parameter types, do you include some kind of description of the parameters in the method name, or do you keep the name ...
0
votes
2answers
97 views

Ruby: what is the best way to find out method type in method_missing?

At the moment I've got this code: name, type = meth.to_s.match(/^(.+?)([=?]?)$/)[1..-1] But it doesn't seem to be the best solution =\ Any ideas how to make it better? Thanks.
0
votes
1answer
40 views

Is there a specific name for this normalization function?

I want to write a normalization function that will take a signed integer and normalize it to a double between -1 to +1. Is there a special name for this type of function, or is Normalize() what people ...
0
votes
3answers
59 views

Should naming of methods within interfaces be concrete or abstract?

Often when I create new classes, I first create a new interface. I name the methods of my interface exactly as I would like them to behave. A colleague of mine prefers to have these method names being ...
-1
votes
2answers
48 views

Is there a naming convention for method that returns completely a brand new object?

Is there a naming convention for method that returns completely a brand new object? "Generate" ? "Create" ?