37
votes
15answers
2k views
Why are we using i as a counter in loops
why are we using
for (int i = 0 ; i < count ; i++){ }
why the i
why not
for (int a = 0; a < count; a++){ }
I do it, you do it, everyone does it but WHY?
*edit
I found out an old …
29
votes
11answers
582 views
How does it know where my value is in memory?
When I write a program and tell it int c=5, it puts the value 5 into a little bit of it's memory, but how does it remember which one? The only way I could think of would be to have another bit of …
23
votes
25answers
2k views
Where do you declare variables? The top of a method or when you need them?
Hi,
I am in sort of a dilemma (in a geekish way of course).
I love to declare variables at the beginning of my methods, and usually order them in some logical way.
The problem is, when the list …
17
votes
10answers
3k views
Pointer vs. Reference
What would be better practice when giving a function the original variable to work with:
unsigned long x = 4;
void func1(unsigned long& val) {
val = 5;
}
func(x);
or:
void func2(unsigned …
11
votes
21answers
791 views
Is a variable named i unacceptable?
As far as variable naming conventions go, should iterators be named i or something more semantic like count? If you don't use i, why not? If you feel that i is acceptable, are there cases of iteration …
11
votes
5answers
1k views
What’s the best way to return multiple values from a function in Python?
I have a function where I need to do something to a string. I need the function to return a boolean indicating whether or not the operation succeeded, and I also need to return the modified string.
…
10
votes
32answers
2k views
What kind of prefix do you use for member variables?
No doubt, it's essential for understanding code to give member variables a prefix so that they can easily be distinguished from "normal" variables.
But what kind of prefix do you use?
I have been …
7
votes
6answers
307 views
Why are variables declared with their interface name in Java?
This is a real beginner question (I'm still learning the Java basics).
I can (sort of) understand why methods would return a List<String> rather than an ArrayList<String>, or why they …
6
votes
4answers
236 views
Pythonic way to only do work first time a variable is called
Hello,
my Python class has some variables that require work to calculate the first time they are called. Subsequent calls should just return the precomputed value.
I don't want to waste time doing …
6
votes
6answers
684 views
bash: defining a variable with or without export
What is export for?
What is the difference between:
export name=value
and
name=value
5
votes
3answers
674 views
Declaring variables inside a switch statement
I saw a few answers to this issue, and I get it — you can't declare and assign variables inside a switch. But I'm wondering if the following is correct at throwing an "error: expected expression …
5
votes
5answers
240 views
How can I execute code when value of a variable changes in C#?
I want to toggle a button's visibility in when value of a particular variable changes. Is there a way to attach some kind of delegate to a variable which executes automatically when value changes?
5
votes
7answers
1k views
What’s bigger than a double?
Is there a native c++ variable type that's "bigger" than a double?
float is 7
double is 15 (of course depending on the compiler)
Is there anything bigger that's native, or even non-native?
5
votes
17answers
2k views
Do you prefix your instance variable with ‘this’ in java ?
And... we have another QAW (Quality Assurance War) on our hand.
After reading the more generic "What kind of prefix do you use for member variables?" question, I tried to argue with my QA department …
4
votes
2answers
169 views
C# How to dump all variables & current values during runtime
Are there any in-built or 3rd party libraries that allow you to simply dump all variables in memory during run time? What I would like is to be able to view variables & current values similarly …
