Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
11
votes
15answers
6k views

Why can't variable names start with numbers?

I was working with a new c++ developer a while back when he asked the question: "Why can't variable names start with numbers?" I couldn't come up with an answer except that some numbers can have text ...
7
votes
7answers
2k views

Programmatic way to get variable name in C?

I am developing a tool to dump data from variables. I need to dump the variable name, and also the values. My solution: Store variable name as a string, and print the "variable name", followed by its ...
6
votes
6answers
289 views

Safest way to change variable names in a project

So I've been working on a relatively large project by myself, and I've come to realise that some of the variable names earlier on were.. less than ideal. But how does one change variable names in a ...
6
votes
3answers
487 views

What does the @ in this code sample mean?

Html.TextBox("ParentPassword", "", new { @class = "required" }) what the gosh darned heck is the @ for the @class.
5
votes
2answers
106 views

How Does Local-Scope Work in C# [closed]

Possible Duplicate: Child Scope & CS0136 C# Variable Scoping Though I have been using C# for quite some time, I have just stumbled upon this error. If I have the following: if(true) ...
5
votes
11answers
997 views

Really long class/variable/property/method names

Some friends and colleagues of mine have a little running contest to find or write the longest class/variable/property/method names possible. Keep in mind, we try to be good boys and girls and keep ...
4
votes
4answers
275 views

Do you use particular conventions for naming complementary variables?

I often find myself trying to come up with good names for complementary pairs of variables; where two variables denote opposing concepts, two participants in some sort of duologue, and so on. This ...
3
votes
1answer
184 views

clang unicode characters for variable name

cat test.cpp #include <iostream> int main() { int à; } results in: clang++ test.cpp test.cpp:4:7: error: expected unqualified-id int à; ^ 1 error generated. Now, is there a way ...
2
votes
2answers
190 views

How can I load an object into a variable name that I specify from an R data file?

When you save a variable in an R data file using save, it is saved under whatever name it had in the session that saved it. When I later go to load it from another session, it is loaded with the same ...
1
vote
3answers
58 views

How to give readable names to elements of an array in C?

I'm inexperienced with C, and working on a microcontroller with messages stored in arrays where each byte does something different. How do I give each element of the array a human-readable name ...
1
vote
1answer
38 views

Neat way to distinguish identifiers and variable names (ANTLR)?

How can we distinguish a variable name, and an identifer, in an ANTLR grammar? VAR: ('A'..'Z')+ DIGIT* ; IDENT : ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_'|'-')*; The piece of ...
1
vote
1answer
114 views

R: Generate variable names, evaluate a function within a list of functions, and assign those values to the generated variable names within a loop

Please excuse me if there are already answers to this, but I can't quite figure it out from the archives. I have generated a list of very similar functions via a for-loop in R: adoptint.fun=list() ...
1
vote
2answers
64 views

How does one use a variable name with the same name as a package in Go?

A common variable name for files or directories is "path". Unfortunately that is also the name of a package in Go. Besides, changing path as a argument name in DoIt, how do I get this code to ...
1
vote
2answers
64 views

What does the variable name “lsSQL” mean?

I've noticed in a recent article on TDWTF that someone was using the variable name lsSQL . I have also noticed similar variable names in a legacy application I am working on and in other places around ...
1
vote
3answers
429 views

How do I access variables with hyphenated names in Smarty?

I've got a PHP page that parses an XML file with SimpleXml, then passes that object to a Smarty template. My problem is that the XML file has hyphens in its tag names, e.g. video-player. In PHP, this ...
1
vote
5answers
251 views

Is there a convention, when using Java RMI, to use the dollar sign $ in a variable name?

I realize that it is a valid part of a variable name, but I've never seen variable names actually use the symbol $ before. The Java tutorial says this: Additionally, the dollar sign character, by ...
1
vote
2answers
911 views

XCode find and replace in project problem with XIB

I wanted to rename one badly named variable to something more naturally named (UITableView myListView --> myTableView). Did that with XCode "Edit - Find - Find in project" and replaced all found 7 ...
1
vote
6answers
152 views

What variable name do you use for file descriptors?

A pretty silly trivial question. The canonical example is f = open('filename'), but f is not very descriptive. After not looking at code in a while, you can forget whether it means "file" or ...
1
vote
9answers
195 views

What would be a good variable name for a rectangle the describes an objects position and size?

The title is fairly self-explanatory, but I'll reiterate: What would be a good variable name for a rectangle that describes an objects position and size. EDIT - The object is a paddle for a Pong-like ...
0
votes
2answers
19 views

Syntax for iterating the comparison of one array to many other systematically named arrays

I have a question about proper syntax in iterative functions. I want to compare one master array to a large set (180+) of other arrays. The large set of arrays to be compared are systematically ...
0
votes
3answers
67 views

Javascript: dynamic var names with php?

Probably a dead simple and idiotic question (I'm totally new to javascript): I have this code that loads a new post by clicking on a "next" or "back"-link. The clicks variable is used to scroll up ...
0
votes
2answers
62 views

Which name is more correct in my case: manager or factory (or something else)?

I have next code: PhotoFactory factory = PhotoFactory.getFactory (PhotoResource.PICASA); PhotoSession session = factory.openSession (login, password); PhotoAlbum album = factory.createAlbum (); Photo ...
0
votes
3answers
375 views

How to create a generic id reference with jQuery

I have about 6 div elements with the same class. When I mouseover any one of them I want to show a nother div next to them. I am thinking of giving them all an id of the form id="mydiv-divname" where ...
-1
votes
4answers
59 views

JavaScript: Get variable name in method defined in prototype

How can I get the variable name in a method, which I defined in the prototype of String()? String.prototype.foobar = function() {alert(/*something here...*/);}; var s="I'm just a stupid string!"; ...
-1
votes
1answer
98 views

Strange variable names

I have found this in a JavaScript source code file: function getElementsByClass(_0x62cbx2, _0x62cbx3, _0x62cbx4) {... How can I translate _0x62cbx2, _0x62cbx3, _0x62cbx4 in the correct variable ...
-1
votes
4answers
116 views

Use of variable '$name' in a function

I like to think I'm quite knowledgeable on php, but this has baffled me. Keeping it basic I have: function req_new($pname, $use=null, $depID=null, $manID=null, $manName=null, $suppID=null, ...