Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
18answers
1k views

Use of “var” type in variable declaration

Our internal audit suggests us to use explicit variable type declaration instead of using the keyword var. They argue that using of var "may lead to unexpected results in some cases". I am not aware ...
26
votes
6answers
779 views

C++, variable declaration in 'if' expression

What's going on here? if(int a = Func1()) { // Works. } if((int a = Func1())) { // Fails to compile. } if((int a = Func1()) && (int b = Func2())) ) { // Do stuff with a and ...
25
votes
8answers
668 views

How can a variable be used when its definition is bypassed?

In my mind, always, definition means storage allocation. In the following code, int i allocates a 4-byte (typically) storage on program stack and bind it to i, and i = 3 assigns 3 to that storage. ...
24
votes
11answers
6k views

Is there any overhead to declaring a variable within a loop? (C++)

I am just wondering if there would be any loss of speed or efficiency if you did something like this: int i = 0; while(i < 100) { int var = 4; i++; } which declares int var one hundred ...
20
votes
5answers
921 views

Why doesn't C# let you declare multiple variables using var?

Given the following: // not a problem int i = 2, j = 3; so it surprises me that this: // compiler error: Implicitly-typed local variables cannot have multiple declarators var i = 2, j = 3; ...
20
votes
6answers
675 views

Why does this C code compile?

#include <stdio.h> int main() { int c = c; printf("c is %i\n", c); return 0; } I'm defining an integer variable called c, and I'm assigning its value to itself. But how can this ...
9
votes
8answers
274 views

Variable declaration after goto Label - C

Today I found one interesting thing. I didn't know that one can't declare a variable after a goto label. Compiling the following code #include <stdio.h> int main() { int x = 5; goto ...
9
votes
4answers
218 views

What is the '@(' doing in this Perl code?

In this code snippet: use strict; use warnings; use Data::Dumper; my $r = [qw(testing this thing)]; print Dumper($r); foreach my $row (@({$r}) { print "$row\n"; ...
9
votes
1answer
87 views

php static in if statement

I have a construction like this in my config file: <?php if (true) { $nonstatic = 1; static $config = 1; } else { $nonstatic = 2; static $config = 2; } echo $nonstatic; echo ...
7
votes
3answers
268 views

what's wrong with declaring a variable inside if's condition?

Perhaps I am getting rusty (have been writing in Python recently). Why does this not compile? if ( (int i=f()) == 0) without the () around the int i=f() I get another, much more reasonable error ...
6
votes
6answers
371 views

Should variable declarations always be placed outside of a loop?

Is it better to declare a variable used in a loop outside of the loop rather then inside? Sometimes I see examples where a variable is declared inside the loop. Does this effectively cause the program ...
6
votes
2answers
201 views

What is the difference between using var and this, in Javascript?

What is the difference between these? var a = 13; this.b = 21; document.write(a); document.write(b);
5
votes
2answers
223 views

Decalaration of variable causes segmentation fault

I don't understand the reason of a segmentation fault error in my program. The code is available here At line 29 I declare a PclImage variable, defined with typedef like an array of struct. The ...
5
votes
4answers
162 views

will declaring variables inside sub-blocks improve performance?

In C#, would there be any difference in performance when comparing the following THREE alternatives? ONE void ONE(int x) { if (x == 10) { int y = 20; int z = 30; // do other stuff } ...
4
votes
1answer
92 views

Declaring Variables in @implementation

I saw an example in a book showing this code: @implementation ViewController { NSString *name; } Why not declare this in @interface? What's the difference in declaring variables in ...
4
votes
1answer
198 views

MySQL Syntax Error In Variable Declaration

I have the following MySQL query: DELIMITER // CREATE PROCEDURE InsertResult (IN winnerID INT, IN loserID INT) BEGIN INSERT INTO KomperResult (WinnerID, LoserID) VALUES (@winnerID, @loserID); ...
4
votes
7answers
307 views

C99 mixed declarations and code in open source projects?

Why is still C99 mixed declarations and code not used in open source C projects like the Linux kernel or GNOME? I really like mixed declarations and code since it makes the code more readable and ...
3
votes
7answers
262 views

Easy-to-learn language like Python, but which requires variable declaration?

Python is super easy to learn and understand; I like it for its use of keywords, lack of intricate syntax (opposite of perl, from what I've heard), and easy-to-use data structures. However, I can't ...
2
votes
3answers
79 views

Possible to initialize an array after the declaration in C?

Is there a way to declare a variable like this before actually initializing it? CGFloat components[8] = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.15 }; I'd like it declared ...
2
votes
2answers
83 views

Disadvantages of Javascript “single var pattern”

In Stefanov's JS Design Patterns book, he writes "you use one var statement and declare multiple variables delimited by commas", and then gives an example of the "single var" pattern as follows: ...
2
votes
1answer
70 views

Strict variable declaration in Scheme

Does Scheme lisp provide any lib. similar to perl "strict" variable declaration?
2
votes
6answers
78 views

Using var for type declaration instead of explicitly setting interface type

I'm not sure if I'm overthinking this but in the past, I've done something like this when declaring a class: IMyService myService = new MyService(); Jumping into myService will take you to the ...
2
votes
2answers
180 views

Does moving variable declaration outside of a loop actually increase performance?

I'm writing very processor-intensive cryptography code (C#), so I'm looking for any performance gains, no matter how small. I've heard opinions both ways on this subject. Is there any performance ...
2
votes
2answers
257 views

Excel-VBA: Variable declaration necessary?

Would it be wrong if write the following code Sub Something() Dim i As integer Dim xRange As Range Dim yRange As Range Set xRange= Range("x_table") Set yRange= Range("y_table") For i = 1 To ...
2
votes
3answers
107 views

Does the order of readonly variable declarations guarantee the order in which the values are set?

Say I were to have a few readonly variables for filepaths, would I be able to guarantee the order in which the values are assigned based on the order of declaration? e.g. static readonly string ...
1
vote
1answer
66 views

declare a variable of UIIMage+AFNetWorking

I am downloading an image from a url using UIImage+AFNetworking. How can I declare a variable of type UIImage+AFNetworking? Should it be UIImage+AFNetworking *myRequest = [[ ...
1
vote
5answers
144 views

variable declaration within the while loop C/C++

according to me following while loop should be infinite but it runs only thrice main() { int i=3; while(i--) { int i=100; i--; printf("%d..",i); } } ...
1
vote
1answer
108 views

Declaring Variables inside Loops, good practice or bad practice? (2 Parter)

Question #1: Is declaring a variable inside a loop a good practice or bad practice? I've read the other threads about wether or not there is a performance issue (most said no), and that you should ...
1
vote
2answers
115 views

How can I tell Visual Studio/Microsoft's C compiler to allow variable declarations after the first statement?

I have code that compiles on GNUARM compiler, but Visual Studio 2010 issues errors. The issue involves declaring variables after the first statement in a C language file: main.c #include ...
1
vote
5answers
123 views

In C#, is there way to define an enum and an instance of that enum at the same time?

Looking for a code optimization in c# that allows me to both define an enum and create a variable of that enum's type simultaniously: Before: enum State {State1, State2, State3}; State state ...
1
vote
2answers
105 views

Why is the Return keyword not working in VB.NET? Why is the value of my variable = Nothing?

I have the following functions. When I call getQueryObject(jsonString) It makes the coll parses the object then returns. The the assignment to jsonObject is not working. When I start operating on the ...
1
vote
2answers
337 views

Difference between declaring an ivar in @interface and putting variable in @implementation

What is the difference between declaring an ivar within an @interface versus putting a variable within an @implementation in a .m file? @interface MyClass : NSObject { int num; } - ...
1
vote
3answers
314 views

C#: variable declaration inside loop

Is the following code correct? foreach (int i in MyList) { MyObject m; } Can you declare a variable more than once?
0
votes
1answer
36 views

Can I 'refresh' a value of a variable?

I declare steps that need to be done in order to install wordpress in an array in the beginning of my ruby script $wordpress_cmds = [ "mkdir -p #{$web_root}#{$web_directory}#{$web_url}/public_html", ...
0
votes
4answers
53 views

Confusion about declaring object

I am learning Collections in CoreJava book and I found this code: List<String> a = new LinkedList<String>(); Now I wonder why this code isn't like this: LinkedList<String> ...
0
votes
1answer
41 views

Problems with object reference type (Dynamic Binding)?

Basically I'm having a little issue here. I have a superclass and a subclass. I am supposed to do an assignment where I execute a method from the subclass, which overrides the method from the ...
0
votes
1answer
116 views

Variable declaration in 'if' expression follow-up

This is a follow-up to C++, variable declaration in 'if' expression if( int x = 3 && true && 12 > 11 ) x = 1; The rules (so far as I can tell) are: can only have 1 variable ...
0
votes
2answers
52 views

Is variable declaration within a loop bad?

I'm referring to the main static languages today (C, C++, java, C#,). I've heard some contradicting answers about this, so I wanted to know: If I have some code such as: loop(...) { type x = val; ...
0
votes
3answers
104 views

Array declaration in the .h file, is it a good idea?

I am working in C++ and want to declare an array in the private section of the header file. Now that I am thinking about it, I thought doing so was bad practice? I would think doing this would cause ...
0
votes
5answers
186 views

Variable Declaration in C

I am trying to declare a integer variable m and a pointer to integer data type n. int m,*n; *n=2; printf("%d",*n); above code works fine. But int *n,m; *n=2; printf("%d",*n); gives segmentation ...
0
votes
0answers
64 views

Accessing members from code-behind

I'm trying to access a variable in the aspx page which is defined in the code-behind. I get the error: XXX is not declared. It may not be accessible due to it's protection level. If I instead ...
0
votes
3answers
79 views

linking error2005 visual studio 2008 c++

I had struct errorStruct & a queue errQueue definition in yacc.y , then moved it to separate .h file but it gives me linking error that the definition is found in both yacc.obj and node.obj !! ...
0
votes
5answers
74 views

Which is the better way of declaring variables?

Which is the better way of declaring variables? 1. int i,j,k; 2. int i; int j; int k; Can anybody explain which is the better way and why?
0
votes
2answers
271 views

Problems in declaring a variable as Byte in VB.NET

I'm trying out a program which I found on the net. Why is it necessary to put to curly braces at the end of the statement? It gives an error: "Byte has no constructors". Dim data As Byte() = New ...
0
votes
4answers
201 views

VB.Net variable declaration

I notice that both of these compile without any compiler warnings or errors, even with Option Strict and Option Explicit both turned on: Dim x As Exception = New Exception("this is a test") ...
0
votes
3answers
90 views

what is the difference in variable delaration here?

I am picking up maintenance of a project and reading code: I see two methods of variable declaration. Can someone explain what the difference between the first and second line means? To me, I am ...
-1
votes
5answers
176 views

What is the difference between int* ptr and int *ptr in C? [closed]

Possible Duplicate: C: is there a difference between “int* fooBar;” and “int *fooBar;”? I am fairly new at C and I don't know the difference between the following ...
-1
votes
1answer
121 views

i get an error when creating a variable and specifing the collation in sql server 2005

when i tried this: DECLARE @var nvarchar(500) collate Arabic_BIN i got that: Msg 156, Level 15, State 1, Line 1 Incorrect syntax near the keyword 'collate'. that is the full code, it works, i do ...