Tagged Questions
The variable-naming tag has no wiki summary.
83
votes
33answers
3k views
Am I immoral for using a variable name that differs from its type only by case?
For instance, take this piece of code:
var person = new Person();
or for you Pythonistas:
person = Person()
I'm told constantly how bad this is, but have yet to see an example of the immorality ...
12
votes
2answers
614 views
Underscore in Python
What is the meaning of _ after for in this code?
if tbh.bag:
n = 0
for _ in tbh.bag.atom_set():
n += 1
10
votes
2answers
594 views
What is the history of the variable names x and xs?
I'm trying to pick up a bit of Haskell, and I'm alternating between awe and befuddlement. One of the really alienating things for me, trivial as this may seem, is the pattern matching idiom (x:xs). ...
10
votes
3answers
349 views
Why do I see JavaScript variables prefixed with $?
This is sort of a meta-question. Many snippets of JavaScript I've seen here on SO are named with a dollar sign prefix (for example, $id on the second line of the snippet shown in this question). I'm ...
10
votes
3answers
488 views
_ as variable name in Python
Peter Norvig has an essay describing a program to solve sudoku puzzles, even the hardest ones, by combining deterministic logical operations and smart traversal of the possible solutions. The latter ...
9
votes
2answers
219 views
What 1-2 letter object names conflict with existing R objects?
To make my code more readable, I like to avoid names of objects that already exist when creating new objects. Because of the package-based nature of R, and because functions are first-class objects, ...
9
votes
4answers
248 views
Someone is using the struct name as a variable name too. What does the code really say? (c++)
This morning we found an old chunk of code that was causing a library call to crash.
struct fred
{
int a;
int b;
int c;
};
fred fred[MAX_SIZE+1];
memset( fred, 0, ...
8
votes
4answers
149 views
Local Variable Naming Conventions in .NET [closed]
I know that the naming conventions really don't say anything about that, but I am just curious to know... When you declare a variable local to a given method, do you PascalCase or camelCase it?
7
votes
9answers
477 views
Is naming variables after their type a bad practice?
I'm programming C++ using the underscore naming style (as opposed to camel case) which is also used by the STL and boost. However, since both types and variables/functions are named all lower case, a ...
6
votes
6answers
1k views
Why do variable names often start with the letter 'm'?
Looking at the Android tutorials such as the Notepad tutorial, I noticed that almost all variables are named starting with the letter 'm'. What convention is this, and where does it originate from?
...
6
votes
9answers
260 views
Parameter names in Python functions that take single object or iterable
I have some functions in my code that accept either an object or an iterable of objects as input. I was taught to use meaningful names for everything, but I am not sure how to comply here. What should ...
6
votes
9answers
161 views
PHP - Worth including the data type in the variable name?
I'm trying to write my code as maintainable and easy to understand as possible, and I thought of including the type of data a variable holds in its name.
e.g:
$intCurrentLine = 1; instead of ...
4
votes
7answers
550 views
How do you name member variables in VB.NET?
I am generally not one to engage in subjective arguments over matters like variable naming, code formatting, etc. So I have no intention of starting an argument here.
I just came across this (old) ...
3
votes
2answers
86 views
VB.NET How do you name your variables that relate to their type?
Just wondering what everyone uses to name variables that relate to an already descriptive class?
For example:
Dim customersData as New CustomersData
Dim customersCollection as CustomersCollection
...
3
votes
2answers
247 views
Variable naming for multi dimensional arrays (PHP)
I'm having a hard time trying to figure out a system of naming multi-dimensional PHP arrays, so that by looking at the variable name, you get a hint about the structure of the multi-dimensional array.
...
3
votes
3answers
565 views
What is “POSNR” an abreviation or acronym for?
I'm working with some data that's coming out of an SAP system. There's a field named
POSNR
that appears to be a line item/database identifier of some kind. What is this an abbreviation for? It's ...
3
votes
7answers
3k views
Javascript and CSS, using dashes
I'm starting to learn some javascript and understand that dashes are not permitted when naming identifiers. However, in CSS it's common to use a dash for IDs and classes.
Does using a dash in CSS ...
3
votes
6answers
497 views
Good name for the opposite of the “canary” metaphor
The "canary" is a common metaphor (for example in buffer overflow checks) for detecting mis-behaving operations by setting a flag before and verifying that it is still set after.
Is there a common ...
2
votes
2answers
58 views
Any way to give names to each of a set of successive integers?
I have an int called setupStage. This is simply a value I increment at the completion of each stage, so I can say, if (setupStage == 2), and I know that I am at the third stage (it defaults to 0).
Is ...
2
votes
2answers
137 views
The opposite of Hungarian Notation?
Most programmers know of a thing called 'Hungarian Notation', each variable has a nice prefix to denote its data type, i.e.
bIsExciting = false; // Boolean
strName = "Gonzo"; // String
...
2
votes
4answers
103 views
How do I name a structure using a variable?
This is got to be simple, but I can't figure it out. How do I name a structure using a variable, for example...
char *QueryName = "GetAirports";
Query QueryName = malloc(sizeof(Query) + ...
2
votes
4answers
116 views
Is it bad style to reassign long variables as a local abbreviation?
I prefer to use long identifiers to keep my code semantically clear, but in the case of repeated references to the same identifier, I'd like for it to "get out of the way" in the current scope. Take ...
2
votes
3answers
537 views
Control/variable naming conventions in ASP.NET
I think the main distinction in naming is between logic and view-related objects. You might have a variable named “UserName” in the code behind file of a page, but then also a .NET TextBox in which a ...
2
votes
7answers
200 views
Naming convention for lambdas
Pretty useless question in the grand scheme of things, but I'm curious - what do you all use for a naming convention inside your lambda expressions?
For example:
Database.TableName.Max(x => ...
2
votes
4answers
892 views
Matlab- How does you name a new variable based on other variables' values? [closed]
Possible Duplicates:
How to concatenate a number to a variable name in MATLAB?
MATLAB: How can I use a variables value in another variables name?
I want to name a variable using values of ...
2
votes
7answers
136 views
Naming conventions for “number of foos” variables
Let's suppose that I need to store the number of foo objects in a variable.
Not being a native English speaker, I always wonder what's the best (= short and immediately clear) name for that var.
...
2
votes
7answers
141 views
How do you refer to the currently logged user in your code?
In other words - what would be a good name for a variable that references the currently logged user?
I've come up with a few:
logged_user
visitor
me
I'm not convinced either of them is ...
2
votes
11answers
299 views
Explanation of naming conventions for classes, methods and variables
I'm currently in University and they're pretty particular about following their standards.
They've told me this:
All classes must start with a capital
letter
Correct
public class MyClass {}
...
1
vote
1answer
25 views
Are there best practices for naming SOAP interface methods and variables?
In .NET, Microsoft has guidelines for naming classes, members, etc. when developing class libraries. Other languages may also have best practices how to name classes, how/if to use some notations.
...
1
vote
6answers
39 views
correct name for a variable users_ids vs user_ids
I ask you, native English speakers:
What is the correct name for a variable (from grammar point of view):
A) users_ids vs B) user_ids
I'm pretty sure C) users_id is wrong.
The variable is an array ...
1
vote
5answers
172 views
print variable-name in Matlab
I have a function in Matlab that has some variables in it. I need to print out the variable_names (in case of an exception etc.). I am aware of inputname function but it works for input_arguments ...
1
vote
1answer
171 views
Does this “filtering” function exist? What would be a good name for such a function?
I'm solving a Project Euler problem which involves all the n-digit numbers with a certain property. It seems that the easiest way to get them might be to get a list of all the numbers with that ...
1
vote
4answers
266 views
C/C++: Naming conventions for arrays? [closed]
What is a good naming convention for arrays? I am working on a code base with few thousand line of codes and there is no consistent naming convention for arrays. Few ppl name them by appending List at ...
1
vote
2answers
55 views
What naming convention to use to indicate a variable as a 'counter'?
Say I've got a variable which holds the number of something. E.g number of users in the database, number of replies a forum topic has gotten, number of sales, etc.
I'm looking for an intuitive naming ...
1
vote
3answers
174 views
php object attribute with dot in name
I have mysql table with collumns like 'operation.date', 'operation.name' and etc.
After fetching that table data as object with $mysqli->fetch_object() i get this (print_r of row):
stdClass Object
...
1
vote
3answers
44 views
naming a function that exhibits “set if not equal” behavior
This might be an odd question, but I'm looking for a word to use in a function name. I'm normally good at coming up with succinct, meaningful function names, but this one has me stumped so I thought ...
1
vote
1answer
171 views
Naming convention for variables in class constructor
In the past when I have written classes and constructors, I named the variables in the constructor parameter something different than what would have been stored in the actual class itself. I used to ...
1
vote
3answers
97 views
Can you get a variable name as a string in PHP? (And should you?)
Say you have several large arrays of variables (which generally are strings), and you want to change how they are displayed on certain pages – for example by concatenating each of them with $prefix ...
1
vote
4answers
151 views
Can I create an Object like this in Ruby / Java / C#?
Could you create an object from a class named Trung.NguyenThe since NguyenThe isn't a method ?
1
vote
8answers
990 views
Python Fibonacci Generator
I need to make a program that asks for the amount of fibonacci numbers printed and then prints them like 0, 1, 1, 2... but I cant get it to work. My code looks the following:
a = int(raw_input('Give ...
1
vote
2answers
312 views
Why do local variables in Magento have an underscore prefix?
As a follow up to an earlier question I wonder if anyone knows why Magento templates all declare their variables with an underscore. Templates are .phtml files include-ed from ...
1
vote
1answer
24 views
Popular keywords in vars, functions etc. names? [closed]
help me please with naming vars and functions!
And more specifically about standartizing names and functions (I'm not talking about classes because sometimes it really depends on FrameWork etc.).
...
1
vote
4answers
54 views
Naming suggestion for a class containing a timestamp and a float value?
I need to name this structure:
struct NameNeeded
{
DateTime timestamp;
float value;
}
I will have arrays of this struct (a time-series).
I'd like a short and suggestive name. The data is ...
1
vote
2answers
383 views
MATLAB: How can I use a variables value in another variables name?
I am wondering if this is possible. My code looks like this:
indexStop = find(firstinSeq(x,4) ~= ...
littledataPassed(y:length(littledataPassed),4), 1, 'first');
for z= 0:(n-1)
...
1
vote
3answers
314 views
Why does Resharper rename variables to start with an underscore?
I've never understood this, and frankly, it pisses me off to see it in code: variable names that begin with an underscore.
What is the point of this?
I've just installed Resharper 5.1, trying it out ...
1
vote
5answers
186 views
Flex AS3: Is smaller varialble name is faster then longer names?
We are in process of optimization of Flex AS3 Application.
One of my team member suggested us to make varible name length smaller to optimize the application performence.
i.e.
var ...
1
vote
1answer
127 views
Java / Android self naming
I am about to start developing an Android application and had a question if in Java there self naming. For instance say I had a variable named dog that held the value of scruffy.
Could I then create ...
1
vote
2answers
28 views
Naming a set of method,field,local var, and function
In writing a compiler grammar, I'm trying to come up with a name/label for a set of elements that include pretty much everything with an ident in it: method, field, local var and function
I thought ...
1
vote
6answers
201 views
When, if ever, should the name of a property contain the name of the class?
public class Fruit
{
// choose one
public int Id { get; set; }
public int FruitId get; set; } // redundant or usefully more descriptive?
// choose one
public string Name { get; ...
1
vote
2answers
49 views
How should i name for this table and function?
I have a list of media that i inspired and a list i was inspired by. In a table i named it
inspirer, inspired. I am sure inspirer is not a word so thats one problem.
next is i have 2 functions, i ...