The variable-initialization tag has no wiki summary.
6
votes
5answers
224 views
Is it bad practice to initialize a variable to a dummy value?
This question is a result of the answers to this question that I just asked.
It was claimed that this code is "ugly" because it initializes a variable to a value that will never be read:
String ...
5
votes
1answer
66 views
Would the intialization value be computed at compile time or runtime?
if i have a function that uses the rand() function as its initialization value, would that value be found when the program compiles, or when the function is run?
say:
int function(int init = ...
4
votes
3answers
86 views
Variable initialization (pointer and value)
Foo f1 = Foo(); // (1) Ok
Foo f2 = Foo; // (2) Compiler error
Foo *p1 = new Foo(); // (3) Ok
Foo *p2 = new Foo; // (4) Ok. Why??
I was wondering why there exists two ways to ...
4
votes
7answers
494 views
Java String initialization
Which do you prefer and why"
String myString = null;
if(someCondition)
myString = "something";
else
myString = "something else";
OR
String myString = "";
if(someCondition)
myString = ...
2
votes
1answer
53 views
How do I initialize template type variables?
template <class T>
void MyClass<T>::MyMethod()
{
// ...
// Which of the following initialization is better?
T MyVariable1 = 1; // 1st
T MyVariable2 = 2.0; ...
2
votes
5answers
197 views
C# - Initialize a variable without knowing what its going to be
I have two different tables in my database, and each are displayed to the user based on their "SortOrder". I have written two functions that take a row (or entity) and swaps its sort order with the ...
2
votes
5answers
378 views
What is the better approach to initialize class variables?
Here are two way to initialize class variables.
1st Method
class Test {
private $var1;
private $var2;
public function Test($var1,$var1) {
$this->var1 = $var1;
...
2
votes
4answers
383 views
Stop a periodic task from within the task itself running in a ScheduledExecutorService
Is there a nice way to stop the repetition of task from within the task itself when running in a ScheduledExecutorService?
Lets say, I have the following task:
Future<?> f = ...
2
votes
3answers
431 views
Is it ok to call a function in constructor initializer list?
My gut feeling is it is not. I am in the following situation:
class PluginLoader
{
public:
Builder* const p_Builder;
Logger* const p_Logger;
//Others
};
...
2
votes
7answers
196 views
Java String initialization (part 2)
I asked this goofy question earlier today and got good answers. I think what I really meant to ask is the following:
String aString = ""; // Or = null ?
if(someCondition)
aString = "something";
...
1
vote
3answers
123 views
What is the difference between this two constructor?
What is the difference between this two constructor?
int x, y; //position
BasePoint(int px, int py) : x(px), y(py) {}
and
int x, y; //position
BasePoint(int px, int py)
{
x = px;
y = ...
0
votes
2answers
92 views
C++, memory and arrays. Creating my own hashmap for exercise. Unexpected data left in memory?
So i'm trying to create a pretty specific for my needs hashmap for a small project where i'm trying to learn c++. I have the following code:
template<class T>
class HashMap
{
public:
...
0
votes
2answers
123 views
Initialize a multiple levels hash in rails
So I have some codes look like the following:
@foo ||= {}
@foo[:bar] ||= {}
@foo[:bar][:baz] ||= {}
I am not concerning the performance, but the cleanness. Is there a more beautiful way or better ...
0
votes
5answers
226 views
How can I pass a group of objects to a function for creation?
So I'm working in Delphi 2007 and I am cleaning up my code. I have come to notice that in a great many procedures I declare a number of different variables of the same type.
for example the one ...
0
votes
2answers
248 views
C Variable has incomplete initializer
I am trying to make a struct with a default value, as described here: Default values in a C Struct. However, I have this C code, inside a header file:
/* tokens.h */
typedef struct {
char *ID;
...
0
votes
1answer
2k views
sending a SOAP request with c#
I'm trying to send a SOAP request to a 3rd party web service. I've successfully send and received data from other interfaces in the same service, but I'm having problems with this particular one:
...