Tagged Questions
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). ...
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
478 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 ...
4
votes
7answers
553 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
567 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 ...
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
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
201 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
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
26 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
4answers
268 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
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
2answers
313 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
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
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
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; ...
0
votes
4answers
36 views
Boolean variable naming of price setting
I have a boolean variable that flags if a price (on an individual item) should be displayed. I started to name it "DisplayPrice", but that is really more descriptive of the price of the item to be ...
0
votes
2answers
66 views
Please suggest a better property name for Items Order Index (in a list)
Hi I have a class of let's say "Channels", like folders - but it could be menu items in a navigation block. So obviously a "Channel" has properties like
.Title
.Alias (wordPress slug-like)
.Content
...
0
votes
2answers
90 views
Sensible variable names for a text adventure action
This is a difficult one, I've been racking my brains but I just come up with a sensible name for these variables. Someone will probably instantly hit on one.
Take these example actions:
"throw ...
0
votes
1answer
59 views
Variable names of unordered set items without implied structure
This question will be asked in a specific form, but applies to a more general question, how to name unordered set items without implying any sort of structure.
In terms of graph theory, a connected, ...
0
votes
6answers
1k views
Should I capitalize constructor names for my classes?
I use camel case which has the first letter of all variable names, functions, etc lowercased. But the class names are capitalized. Should I use:
class Foo
{
function foo()
{
}
}
or :
...