Tagged Questions
A variable is a named, data storage location in memory. The program can store numbers, text, binary data, or a combination of any of these data types inside a variable. They can be passed around in code, to other functions and even other applications.
222
votes
24answers
13k views
Is there a better way of writing v = (v == 0 ? 1 : 0);
I want to toggle a variable between 0 and 1. If it's 0 I want to set it to 1, else if it's 1 I want to set it to 0.
This is such a fundamental operation that I write so often I'd like to investigate ...
180
votes
31answers
48k views
Why are variables “i” and “j” used for counters? [closed]
Possible Duplicate:
Why are we using i as a counter in loops
I know this might seem like an absolutely silly question to ask, yet I am too curious not to ask...
Why did "i" and "j" become ...
112
votes
9answers
3k views
C# variable declared in for cycle is local variable?
I have been using C# for quite a long time but never realised following:
public static void Main()
{
for (int i = 0; i < 5; i++)
{
}
int i = 4; //cannot declare as 'i' is ...
87
votes
14answers
4k 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 ...
73
votes
7answers
64k views
How to check a not defined variable in javascript [closed]
Possible Duplicate:
Detecting an undefined object property in JavaScript
I wanted to check whether the variable is defined or not.
eg
alert( x );
Throws a not defined error
How can I ...
61
votes
8answers
28k views
41
votes
16answers
15k views
Difference between declaring variables before or in loop?
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 pointless example) in ...
39
votes
6answers
2k views
Does “this” have any advantage? [closed]
Possible Duplicate:
Do you prefix your instance variable with 'this' in java ?
Simple question.
Is there a real difference between (generally, not only in constructors):
class ...
39
votes
6answers
41k views
Objective C Static Class Level variables
I have a class Film, each of which stores a unique ID. In C#, Java etc I can define a static int currentID and each time i set the ID i can increase the currentID and the change occurs at the class ...
37
votes
7answers
28k views
37
votes
7answers
9k views
Python variable scope question
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 = (1, 2, 3)
print(a, b, ...
36
votes
6answers
19k views
How do I check if a variable exists in Python?
I want to check if a variable exists. Now I'm doing something like this:
try:
myVar
except NameError:
# Doint smth
Are there any other ways without exceptions? Or is that part of code right?
36
votes
11answers
7k 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 void ThisIsMyMethod()
...
35
votes
15answers
6k views
Create a variable in .CSS file for use within that .CSS file
We have some "theme colors" that are reused in our CSS sheet.
Is there a way to set a variable and then reuse it?
E.g.
.css
OurColor: Blue
{ H1
color:OurColor;
}
34
votes
8answers
14k views
How do you check if a variable is an array in JavaScript?
I would like to check whether a variable is either an array or a single value in JavaScript.
I have found a possible solution...
if (variable.constructor == Array)...
Is this the best way this can ...
33
votes
4answers
9k views
Semantic Issue: Property's synthesized getter follows Cocoa naming convention for returning 'owned' objects
I'm currently using the iOS 5 SDK trying to develop my app.
I'm trying to make an NSString a property, and then to synthesize it in the .m file (I have done this before with no issues). Now, I came ...
32
votes
11answers
1k views
String going crazy if I don't give it a little extra room. Can anyone explain what is happening here?
First, I'd like to say that I'm new to C / C++, I'm originally a PHP developer so I am bred to abuse variables any way I like 'em.
C is a strict country, compilers don't like me here very much, I am ...
32
votes
3answers
10k views
Javascript: how to set “this” variable easily?
I have a pretty good understanding of Javascript, except that I can't figure out a nice way to set the "this" variable. Consider:
var myFunction = function(){
alert(this.foo_variable);
}
var ...
31
votes
12answers
11k 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 ...
30
votes
2answers
12k views
Capturing multiple line output to a bash variable
I've got a script 'myscript' that outputs the following:
abc
def
ghi
in another script, I call:
declare RESULT=$(./myscript)
and $RESULT gets the value
abc def ghi
Is there a way to store the ...
29
votes
11answers
714 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 ...
28
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 through my code, I ...
27
votes
6answers
6k views
bash: defining a variable with or without export
What is export for?
What is the difference between:
export name=value
and
name=value
27
votes
23answers
75k views
How to trim whitespace from bash variable?
I have a shell script with this code:
var=`hg st -R "$path"`
if [ -n "$var" ]; then
echo $var
fi
But the conditional code always executes because hg st always prints at least one newline ...
26
votes
10answers
1k views
Is it always best practice to declare a variable?
I'm new to C# and any form of programming, and I have a question that seems to divide those in the know in my university faculty. That question is simply: do I always have to declare a variable? As a ...
26
votes
5answers
24k views
Redirecting StdErr to a Variable in a Bash Script
Let's say I have a script like the following:
useless.sh
echo "This Is Error" 1>&2
echo "This Is Output"
And I have another shell script:
alsoUseless.sh
./useless.sh | sed ...
25
votes
15answers
3k 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 crashes next time, so I ...
24
votes
4answers
756 views
Why does Java allow control characters in its identifiers?
The Mystery
In exploring precisely which characters were permitted in Java identifiers, I have stumbled upon something so extremely curious that it seems nearly certain to be a bug.
I’d expected to ...
24
votes
1answer
2k views
IntelliJ: How to auto-highlight variables like in Eclipse
My employer wants me to use IntelliJ for Java development. Previously, I've always used eclipse.
One of my favorite features in eclipse was being able to click on a variable, method parameter, class ...
24
votes
9answers
15k views
What is the difference between an int and a long in C++?
Correct me if I am wrong,
int is 4 bytes, with a range of values from -2,147,483,648 to 2,147,483,647 (2^31)
long is 4 bytes, with a range of values from -2,147,483,648 to 2,147,483,647 (2^31)
What ...
23
votes
2answers
5k 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 ...
23
votes
4answers
21k views
Is there any way I can define a variable in latex?
In Latex how can I define a string variable whose content is used intead of the variable in the compiled pdf? Let's say I'm writing a tech doc on a software and I wnat to define the package name in ...
23
votes
11answers
22k views
Variables within app.config/web.config
Is it is possible to do something like the following in the app.config or web.config files?
<appSettings>
<add key="MyBaseDir" value="C:\MyBase" />
<add key="Dir1" ...
22
votes
3answers
864 views
Difference between State, ST, IORef, and MVar
I am working through Write Yourself a Scheme in 48 Hours (I'm up to about 85hrs) and I've gotten to the part about Adding Variables and Assignments. There is a big conceptual jump in this chapter, and ...
22
votes
11answers
1k views
How many variables should a constructor have?
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 states how many variables should be ...
22
votes
7answers
9k 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 performance in the ...
20
votes
7answers
255 views
In R, what exactly is the problem with having variables with the same name as base R functions?
It seems to be generally considered poor programming practise to use variable names that have functions in base R with the same name.
For example, it is tempting to write:
data <- data.frame(...)
...
19
votes
14answers
601 views
Is it good practice to create once-used variables?
A colleague of mine refactored this code:
private void btnGeneral_Click(object sender, RoutedEventArgs e)
{
Button button = (Button)e.OriginalSource;
Type type = this.GetType();
Assembly ...
19
votes
11answers
8k 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 Integer. I do this because ...
18
votes
33answers
5k 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 ...
17
votes
11answers
957 views
Pointer vs Variable speed in C++
At a job interview I was asked the question "In C++ how do you access a variable faster, though the normal variable identifier or though a pointer". I must say I did not have a good technical answer ...
17
votes
5answers
1k views
What does immutable mean?
If a string is immutable, does that mean that....
(let's assume JavaScript)
var str = 'foo';
alert(str.substr(1)); // oo
alert(str); // foo
Does it mean, when calling methods on a string, it will ...
17
votes
8answers
13k views
Determine if variable is defined in Python
How do you know whether a variable has been set at a particular place in the code at runtime? This is not always obvious because (1) the variable could be conditionally set, and (2) the variable could ...
16
votes
4answers
281 views
How does --$| work in Perl?
Recently I came across this way to filter out every second value of a list:
perl -E 'say grep --$|, 1..10'
13579
How does it work?
16
votes
10answers
6k views
Best way to test for a variable's existence in PHP; isset() is clearly broken
From the isset() docs:
isset() will return FALSE if testing a variable that has been set to NULL.
Basically, isset() doesn't check for whether the variable is set at all, but whether it's set to ...
16
votes
8answers
2k 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 the type, not a part ...
16
votes
9answers
561 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 instructing a Ruby ...
16
votes
10answers
12k views
15
votes
2answers
95 views
MySQL credentials/hosts variables best practices
I want to know what is the best practice or what is recommended to do when a variables are created for MySQL credentials/host.
define('HOST', 'localhost');
// etc..
mysql_connect(HOST, // ...
15
votes
1answer
205 views
Why would one choose to declare and initialize a lexical variable in separate statements?
This is an excerpt from AnyEvent::Intro
# register a read watcher
my $read_watcher; $read_watcher = AnyEvent->io (
fh => $fh,
poll => "r",
cb => sub {
my $len = ...