Tagged Questions

23
votes
14answers
2k views

Do you find you still need variables you can change, and if so why?

One of the arguments I've heard against functional languages is that single assignment coding is too hard, or at least significantly harder than "normal" programming. But looking …
17
votes
4answers
413 views

Are there any declaration keywords in Python?

Are there any declaration keywords in python, like local, global, private, public etc. I know it's type free but how do you know if this statement: x = 5; Creates a new variabl …
17
votes
7answers
2k views

Python variable scope question

Hi, I've been programming for many years, and recently started learning Python. The following code works as expected in both python 2.5 and 3.0 (on OS X if that matters): a, b, c …
15
votes
11answers
456 views

How many variables should a constructor have?

Hello everyone, I realize this is a pretty open question and could get a variety of answers, but here goes. Using C# (or Java, or any OO language), is there a general rule that s …
14
votes
15answers
1k views

Does it help GC to null local variables in Java

I was 'forced' to add myLocalVar = null; statement into finally clause just before leaving method. Reason is to help GC. I was told I will get SMS's during night when server crashe …
10
votes
9answers
2k 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 vo …
10
votes
11answers
2k views

.NET Integer vs Int16?

I have a questionable coding practice. When I need to iterate through a small list of items whose count limit is under 32000, I use Int16 for my i variable type instead of Intege …
9
votes
12answers
1k views

Difference between declaring variables before or in loop?

Hi, I have always wondered if, in general, declaring a throw-away variable before a loop, as opposed to repeatedly inside the loop, makes any (performance) difference? A (quite p …
9
votes
8answers
2k views

Is it better in C++ to pass by value or pass by constant reference?

Is it better in C++ to pass by value or pass by constant reference? I am wondering which is better practice. I realize that pass by constant reference should provide for better p …
9
votes
9answers
376 views

To foo bar, or not to foo bar: that is the question.

This was something originally discussed during a presentation given by Charles Brian Quinn of the Big Nerd Ranch at acts_as_conference. He was discussing what he had learned from …
8
votes
6answers
745 views

In C, why is the asterisk before the variable name, rather than after the type?

In my experience, everyone names variables like this: int *myVariable; Rather than like this: int* myVariable; Both are valid. It seems to me that the asterisk is a part of t …
8
votes
18answers
1k 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 n …
7
votes
7answers
262 views

Separate Namespaces for Functions and Variables in Common Lisp versus Scheme

Scheme uses a single namespace for all variables, regardless of whether they are bound to functions or other types of values. Common Lisp separates the two, such that the identifie …
7
votes
4answers
385 views

Why compiler is not giving error when signed value is assigned to unsigned integer? - C++

I know unsigned int can't hold negative values. But the following code compiles without any errors/warnings. unsigned int a = -10; When I print the variable a, I get a wrong val …
7
votes
14answers
1k views

Enumerate or list all variables in a program of [your favorite language here]

A friend asked me last week how to enumerate or list all variables within a program/function/etc. for the purposes of debugging (essentially getting a snapshot of everything so you …

1 2 3 4 5 38 next
15 30 50 per page