Tagged Questions
The declaration tag has no wiki summary.
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 ...
28
votes
13answers
21k views
Cannot refer to a non-final variable inside an inner class defined in a different method
Edited:
I need to change the values of several variables as they run several times thorugh a timer. I need to keep updating the values with every iteration through the timer. I cannot set the values ...
26
votes
3answers
709 views
Redefinition allowed in C but not in C++?
Why does this code work in C but not in C++?
int i = 5;
int i; // but if I write int i = 5; again I get error in C also
int main(){
// using i
}
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
6answers
4k views
What’s the difference between “Array()” and “[]” while declaring a JavaScript array?
Whats the real difference between declaring an array like this:
var myArray = new Array();
and
var myArray = [];
21
votes
5answers
606 views
C++: meaning of = delete after function declaration
class my_class
{
...
my_class(my_class const &) = delete;
...
};
What does = delete mean in that context?
Are there any other "modifiers" (other than = 0 and = delete)?
20
votes
5answers
922 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;
...
16
votes
4answers
218 views
Is there a valid case for creating a temporary that is immediately destroyed and is not used directly in C++?
Inspired by this question. Suppose I have class Lock with a default constructor and in some code I write the following statement:
Lock();
this will have the effect of creating a temporary object of ...
15
votes
7answers
4k views
In C++ classes, why the semi-colon after the closing brace
Apologies in advance for what is probably a stupid question, but in C++ classes, why the semi-colon after the closing brace? I regularly forget it and get compiler errors, and hence lost time. Seems ...
15
votes
6answers
11k views
Declaring Multiple Variables in JavaScript
In JavaScript, it is possible to declare multiple variables like this:
var variable1 = "Hello World!";
var variable2 = "Testing...";
var variable3 = 42;
...or like this:
var variable1 = "Hello ...
14
votes
5answers
500 views
Is Type name = name; ever valid code in C++?
The following code is allowed in C++:
int a = a;
or
Type name = name;
Both lead to an uninitialized object being initialized by itself which often leads to undefined behavior.
Is such code ever ...
13
votes
4answers
5k views
When do I define objective-c methods?
I'm learning Objective-C, and have a C/C++ background.
In object-oriented C++, you always need to declare your method before you define (implement) it, even if it is declared in the parent class. ...
12
votes
3answers
318 views
Any problem declaring a variable and using TryParse to initialize it on same line?
This example is in C# but I expect could apply to others just as easily.
I recently found that the following seems to work just fine:
int i = Int32.TryParse(SomeString, out i) ? i : -1;
Somehow it ...
11
votes
4answers
363 views
Where can I legally declare a variable in C99?
When I was first introduced to C I was told to always declare my variables at the top of the function. Now that I have a strong grasp of the language I am focusing my efforts on coding style, ...
11
votes
5answers
4k views
Meaning of “const” last in a C++ method declaration?
What is the meaning of const in declarations like these? The const confuses me.
class foobar
{
public:
operator int () const;
const char* foo() const;
};
11
votes
5answers
18k views
undefined C struct forward declaration
I have a header file port.h, port.c, and my main.c
I get the following error: 'ports' uses undefined struct 'port_t'
I thought as I have declared the struct in my .h file and having the actual ...
10
votes
9answers
2k views
Strict mode in PHP?
Other languages with automatic variable declaration - like Perl - have a strict mode.
By activating this strict mode, variable declaration is required, and Perl throws an error as soon as you try to ...
10
votes
3answers
520 views
What is the difference between declaring an enum with and without 'typedef'?
The standard way of declaring an enum in C++ seems to be:
enum <identifier> { <list_of_elements> };
However, I have already seen some declarations like:
typedef enum { ...
10
votes
5answers
760 views
when to pass a parameter and when to use an instance variable
How do you guys decide between keeping track of something locally and then just passing it in to every method you call on it, or declaring an instance variable and using it in the methods?
I tend to ...
9
votes
4answers
489 views
What's the meaning of 'char (*p)[5];'?
people.
I'm trying to grasp the differences between these three declarations:
char p[5];
char *p[5];
char (*p)[5];
I'm trying to find this out by doing some tests, because every guide of reading ...
9
votes
5answers
348 views
Declaration or Definition in C
From External Variables Wiki:
If neither the extern keyword nor an
initialization value are present, the
statement can be either a declaration
or a definition. It is up to the
compiler to ...
9
votes
6answers
1k views
C++ - defining static const integer members in class definition
My understanding is that C++ allows static const members to be defined inside a class so long as it's an integer type.
Why, then, does the following code give me a linker error?
#include ...
9
votes
2answers
247 views
C Puzzle - play with types
Please check the below program.
#include <stdio.h>
struct st
{
int a ;
}
fn ()
{
struct st obj ;
obj.a = 10 ;
return obj ;
}
int main()
{
struct st obj = fn() ;
printf ("%d", obj.a) ...
9
votes
7answers
4k views
What happens to a declared, uninitialized variable in C? Does it have a value?
Quick question-- if in C I write:
int num;
Before I assign anything to num, is the value of num indeterminate?
8
votes
3answers
164 views
A destructor Shall OR shall not be declared with a pointer ? in C++
In C++0x -n3290 Draft : they added in section :Destructors : 12.4/2nd point last line
**A destructor shall not be declared with a ref-qualifier.**
In c++03 Draft .... they didn't ...
8
votes
4answers
208 views
Is there a use for function declarations inside functions?
We can declare functions inside functions (I wanted a local variable, but it parses as a function declaration):
struct bvalue;
struct bdict {
bdict(bvalue);
}
struct bvalue {
explict operator ...
8
votes
4answers
727 views
C double character pointer declaration and initialization
I always though that declaring
char *c = "line";
was the same as
char c[] = "line";
and so I did
char **choices = { "New Game", "Continue Game", "Exit" };
Which gives me an incompatible ...
8
votes
3answers
290 views
Is this code valid C++?
Is the following code valid C++?
const int var = 10;
{
int var[var]; // why doesn't this give any error ?
}
Note : The code compiles on my g++ compiler.
8
votes
5answers
173 views
Detecting declared package variables in perl
Given
# package main;
our $f;
sub f{}
sub g {}
1;
How can I determine that $f, but not $g, has been declared? Off the cuff, I'd thought that *{main::g}{SCALAR} might be undefined, but it is a bona ...
8
votes
2answers
365 views
Why does this separate definition cause an error?
Solution:
This is an interesting problem, because sometimes we have no choice but to declare an explicitly qualified name.
std::string convert();
namespace tools {
class Numeric {
// ...
...
8
votes
5answers
2k views
what is the difference between function declaration and signature?
In C or C++ what is the difference between function declaration and function signature?
I know something of function declaration but function signature is totally new to me. What is the point of ...
8
votes
5answers
359 views
Is there any difference between “Object[] x” and “Object x[]”?
I was updating a legacy ode base in Java and I found a line like this:
Object arg[] = { new Integer(20), new Integer(22) };
That line catch my attention because I am used to this kind of code:
...
8
votes
6answers
683 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 ...
8
votes
2answers
324 views
C++: Confusing declaration semantics
After tring my hand at perl and a little bit of C, I am tring to learn C++ and already i am bogged down by the details and pitfalls. Consider this:-
int x = 1;
{
int x = x; // garbage value of x
}
...
8
votes
8answers
8k views
How do I pass a hash to a function in Perl?
I am having a lot of trouble. I have a function that takes a variable and an associative array, but I can't seem to get them to pass right. I think this has something to do with function declarations, ...
7
votes
5answers
159 views
Variables scope which are defined within a while block in stored procedures - SQl Server
I've come across a interesting scenario (at least for me) in a stored procedure. Would like to have experts opinion and thoughts on it.
DECLARE @loopcounter INT
SET @loopcounter=10
WHILE ...
7
votes
5answers
305 views
What does *unspecified* means in C++ typedef statement?
I see statements like
typedef *unspecified* value_type;
typedef *unspecified* reference;
in the declaration of Boost::multi_array class.
namespace boost {
template ...
7
votes
3answers
274 views
Objective C: Why do we declare ivars in the .h member area if @property seems to do it automatically?
In implementing an interface it seems the common method in tutorials and literature is to declare an ivar and then set the @property then @synthesize.
@interface MyClass : NSObject {
NSString ...
7
votes
3answers
310 views
C++ variable declation syntax
I recently came across this construct:
int(m);
which seems to be equivalent to:
int m;
Oddly, I have never seen this particular idiom before. Can someone point me to a reference where I can ...
7
votes
3answers
295 views
Making an undefined class as friend, and defining it later
Making an unknown friend
template<typename T>
class List
{
protected:
class a {
int x;
int y;
private:
friend class b; // <------------ Why this is not an ...
7
votes
5answers
350 views
Function declaration in python to have a readable and clean code?
Is it possible to declare functions in python and define them later or in a separate file?
I have some code like:
class tata:
def method1(self):
def func1():
# This local function ...
7
votes
3answers
309 views
what is the expected behavior?
Below is a purely academically invented class hierarchy.
struct X{
void f1();
void f2();
void f3();
};
struct Y : private X{
void f4();
};
struct Z : X{
};
struct D ...
7
votes
6answers
249 views
How do you declare a pointer to a function that returns a pointer to an array of int values in C / C++?
Is this correct?
int (*(*ptr)())[];
I know this is trivial, but I was looking at an old test about these kind of constructs, and this particular combination wasn't on the test and it's really ...
7
votes
7answers
590 views
Declaring and initializing variable in for loop
Can I write simply
for (int i = 0; ...
instead of
int i;
for (i = 0; ...
in C or C++?
(And will variable i be accessible inside the loop only?)
7
votes
4answers
508 views
In C#, What is <T> After a Method Declaration?
I'm a VB.Net guy. (because I have to be, because the person who signs my check says so. :P) I grew up in Java and I don't generally struggle to read or write in C# when I get the chance. I came ...
7
votes
10answers
1k views
C++/CLI : Advantages over C#
Is there any major advantage of managed C++/CLI over C#. Definitely not the syntax I suppose as the following code in C++/CLI is real ugly,
C++/CLI code:
[Out]List<SomeObject^>^% someVariable
...
6
votes
4answers
2k views
Initializing multiple variables to the same value in Java
I'm looking for a clean and efficient method of declaring multiple variables of the same type and of the same value. Right now I have:
String one = "", two = "", three = "" etc...
But I'm looking ...
6
votes
2answers
376 views
Grammar of a C++ Translation Unit
My understanding, for a long time now, was that a C++ translation unit, after the preprocessor has run, is a sequence of declarations (let me remind that any definition is also a declaration).
Many ...
6
votes
1answer
186 views
Ambiguous declarations
What is the difference between the following two declarations:
1. int foo(int);
2. int foo(int());
I am not sure if both the declarations are equivalent. What makes (2) different from (1)?
6
votes
1answer
240 views
function vs variable declaration in C++
This code works:
std::ifstream f(mapFilename.c_str());
std::string s = std::string(std::istreambuf_iterator<char>(f), std::istreambuf_iterator<char>());
ParseGameState(s);
Whereby ...