Initialization deals with the (often dreaded) task of initializing the contents of your data structure. It's a common practice in statically-typed languages.

learn more… | top users | synonyms (2)

2
votes
2answers
37 views

Uninitialized Object vs Object Initialized to NULL

I'm working in Java. I commonly setup some objects as such: public class Foo { private SomeObject someName; // do stuff public void someMethod() { if (this.someName != null) { ...
1
vote
5answers
72 views

In C++ is it possible to override virtual methods upon initialization?

When I wrote java it was possible to override abstract method when you initialized a class. I think it looked something like this: AbstractClass object = new AbstractClass(){ void ...
1
vote
2answers
53 views

c programming segfault unitialised int?

I have this c program that looks like. int indexLength; char *args[1024]; while(args[indexLength]) indexLength++; If i run the program under computer at work, the while loop line gives me a ...
0
votes
0answers
8 views

Rails: How to load a thread on startup

I am working with a UDP server in rails and I have the server called from my config/initializers folder. If I run the code thread_a=Thread.new{UDPserver()} then the the code works fine however the ...
4
votes
2answers
100 views

Initialize a Struct containing a const array with initializer list

I working with C++11 and have a Class containing the following Struct: struct Settings{ const std::string name; const std::string* A; const size_t a; }; class X { static const ...
0
votes
3answers
26 views

Intermingling attr_accessor and an initialize method in one class

I see code like: class Person def initialize(name) @name = name end end I understand this allows me to do things like person = Person.new and to use @name elsewhere in my class like other ...
1
vote
3answers
42 views

Perl objects - class variable initialization

I've just begun designing a Perl class, and my only prior experience with OOP is with C++, a long time ago. There are a few items of data that I need to be "class variables" - shared by all ...
8
votes
2answers
84 views

How to prevent multiple initialization of dynamic library

I am working on Python version 2.7. I have a module extension for Python written in C. The module initialization function PyMODINIT_FUNC initmymodule contains some code for initializing OpenSSL ...
-1
votes
5answers
58 views

In Java, how do I initialize an array of strings? [duplicate]

What I want to do is initialize an array of strings and then fill each space with a different string, like so: int year = 1995; //the current year i'm working with String[] Year; ...
0
votes
4answers
59 views

C - Static array of structs with string member not properly initialised?

Alright, so here goes. I am trying to do a switch over a string value in C, as described here. However, the array of structs does not seem be initialised properly. My (simplified) program looks as ...
0
votes
2answers
70 views

What is the meaning of “l” in some variables initialization - C++ [duplicate]

What is the meaning of "l" in some variable initialisations? For example: #define maxpossible (1000000000L) double A = 1L; double B = 999999999l; Is there a difference between "L" and "l"?
0
votes
4answers
65 views

C++: save variable value for next call of the function

Is there a way to initialize a variable in a function and save its value for next call of function? I'm making application in qt and i have one function connected with a signal. I want an variable in ...
0
votes
1answer
63 views

(C++) Initialize string with HUGE amount of text, not from txt

I have a quick question that I think has a quick answer. I have a string variable and I need it to be filled with predetermined characters. The problem is, I have A LOT to put in it. How can I fill ...
0
votes
1answer
47 views

array of wildcard collection initialized with array of rawtype

Reasonably enough, compiler would give you Raw type conversion warning for this: //1 List<?> arrList = new ArrayList(); //raw type warning However, compiler is ok (no warning) with this line: ...
1
vote
1answer
42 views

How to use base member initialization on an array?

Making a blackjack game and need to know how to initialize an array using base member initialization (i.e. intializing within a constructor using the unary scope resolution operator). //Constructor ...
3
votes
6answers
90 views

Using 'this' when initializing an instance variable in java?

I've seen this used when declaring an instance variable in IB's API, but this seems like a bad idea. Is assignment guaranteed to occur after this has been fully constructed? Does it matter? I thought ...
0
votes
4answers
42 views

Java - Private Initializer or Initialization in Constructor?

Why do some of the example classes in the Swing Tutorials (sorry, I don't remember which ones; I could be wrong, but I know I saw this somewhere) use private methods like this?: public MyClass{ ...
0
votes
3answers
59 views

Initialising a variable in / as argument

Is a it common practice to initialise local variable in/as argument? For example: Random random = new Random(); void DisplayRandomNumber(int myRandNum) { myRandNum = random.Next(10); ...
0
votes
1answer
17 views

How to reference items in Matlab matrix when declared [duplicate]

I want to extract items from multiple fields of a structure and put them in an array with unique applied. Say the structure has this format: A=repmat( struct('field1',[],'field2',[],'field3',[]) ...
2
votes
2answers
43 views

VHDL / How to initialize my signal?

I'm a beginner in VHDL and I have a basic question. Let's consider this following input : A : in std_logic_vector(22 downto 0); And this signal : signal dummyA : std_logic_vector(47 downto 0); ...
0
votes
1answer
53 views

Initializing 3d vectors c++

I'm trying to initiate a 3d vector in c++. I'm wanting it to initially be a 100 by 100 by 1, but I'm running into problems. (I know that's 2d basically, but I'll resize the z axis vector later.) I ...
1
vote
0answers
15 views

Compiling give : expected initializer before eSellerate_ValidateSerialNumber

I am trying to convert eSellerate example from c++ to QT, but I'm getting this error while compiling: expected initializer before eSellerate_ValidateSerialNumber Does anybody know where is the ...
4
votes
1answer
68 views

Automatic variable has static lifespan if not initialized?

I have the concept of static local variables down pretty well: global lifespan, local scope. Similarly, I understand automatic variables are allocated/deallocated automatically when program flow ...
0
votes
1answer
37 views

WPF C# Deserialize an observable collection <string> with XmlSerializer adds extra items

I wish to save and load a class (MeasConSettings) that contains a ObservableCollection<string> The problem is the list is initialized in my constructor so when I do the following: XmlSerializer ...
1
vote
1answer
44 views

how to listen the special class initialization?

Here I want to listen some special classes initialization; when those classess initialization I will do some actions. Present I want to use interface or annotation, but how to implement this?
0
votes
2answers
42 views

Display a busy indicator while waiting for an initialization of a usercontrol

My app needs to load a usercontrol in the MainWindow on startup. However the initialization of the usercontrol is slow. (not because of loading business data, I already separate the UI from business ...
-7
votes
4answers
100 views

Why does initializing char array to output of function returning char* not compile? [closed]

Why is char name[20]="Solyent"; compiling fine and assigning "Solyent" to name[] but the declaration-cum-initialization below not working ? char name[20]=strcpy("Solyent","Heston"); Why isn't ...
0
votes
1answer
59 views

Programmatic Object Creation in Objective-C

Below there are two methods to programmatically alloc and init objects of various classes and 'types'. - (id)buildObjectOfClass:(NSString *)classString andType:(NSString *)typeString { id ...
2
votes
2answers
65 views

What is the reason for memsetting initialized buffer

While traversing Wikipedia following some links, I stumbled across the following code example that initializes a char buffer to 0, but then memsets it to 0 before use. Is this necessary? If so, why? ...
0
votes
2answers
14 views

When changing state can I re-initialize my code?

So basically I've got a game that runs with 4 game states. One for the main menu and 3 for my mini-games. Within each of these mini games there are smaller states to handle various sections of the ...
0
votes
1answer
32 views

Initialize object by assignment?

How to give types the ability to initialize via an assignment, some like the following: public struct WrappedByte { private byte m_value; } //Usage: WrappedByte x = 0xFF;
0
votes
5answers
73 views

Initializing in a switch case in C

Is it bad practice to initialize variables inside a specific case of a switch? I have quite a few variables that is only relevant for one of my cases, and can't seem to find any info on this. Thanks ...
-1
votes
0answers
18 views

How to Access PHP based on a Modal initialisation?

Essentially, I'm trying to figure out how to record the amount of times someone clicks on a button (Initialised through ) that brings up a modal. I've tried numerous methods, including placing a php ...
0
votes
0answers
59 views

Rails Server won't run: Stating a Load Error in the Initializers

Running the Following versions: Ruby: 2.0.0p0 Rails: 3.2.13 /opt/boxen/rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/railties-3.2.13/lib/rails/application.rb:204:in `initializers': cannot load ...
2
votes
1answer
49 views

Initializing part of function only once

I have a function with a small bit which I want to initialize once e.g. void SomeFunc() { static bool DoInit = true; if (DoInit) { CallSomeInitCode(); DoInit = false; } // The rest of the ...
1
vote
2answers
59 views

Does class initialziation check its member method?

AS the class Log4jImpl below, I want to know whether its' initialization (class initialization not object), will cause org.apache.log4j.Level and org.apache.log4j.Logger to be initializaton? import ...
0
votes
0answers
38 views

How to initialize allocated memory [closed]

In the following code I get the usual Object reference not set to an instance of an object error. Further, when I look at the variable dibCOMP after break, dibCOMP IsNull is true, and there is an ...
0
votes
1answer
13 views

Can not create NSError: unrecognized selector

I am trying to create a NSError category to make pre-defined errors based upon status codes. However, any time that I try to create a NSError from my category, I get a +[NSError ...
0
votes
2answers
76 views

preload the selected values of a kendo multiselect that using a server bound data source and templated tags

I have a kendo multiselect as follows. $("#tags").kendoMultiSelect({ change: onChange, dataSource: { transport: { prefix: "", read: { url: ...
0
votes
1answer
29 views

dialog(“close”) doesn't work inside ajax:success event handler

I am trying to using jQuery dialog to make a user sign in. I am using ajax and devise. After users sign in, the dialog windows should close. I put dialog("close") inside bind("ajax:success"), but it ...
1
vote
2answers
67 views

C++ 2d array initialization

The following line doesn't work: int n1=10,v1=10; int f[n1][v1]={}; error: variable-sized object ‘f’ may not be initialized But the line below works, why? const int n1=10,v1=10; int ...
0
votes
0answers
8 views

When can I access the data of my NSDocument during the initialization?

I need to instantiate some properties with the content of the saved document. Since theses properties are used by my interface, I would like to instantiate them before the NIB is loaded. At which ...
0
votes
0answers
44 views

Django - how to set initial data for foreign key in admin forms?

Here is a resume of my situation : - I have 3 models : caracteristique, produit and produit carac - produit and caracteristique have many -to - many caracteristique through 'carac_produit' When I add ...
0
votes
1answer
47 views

Classloader used in Android Application

I ran into a thorny problem in dealing with Android applications - loading class from a .zip or .dex in an app. I cant deal with the Classloader problem .Please help me, thanks. im trying to load a ...
0
votes
1answer
45 views

OpenCL: struct field initialization from inline function does not work

I have an OpenCL kernel code, which does not behave as expected. The similar C code compiled with gcc works fine. struct data { short* a; }; typedef struct data Data; inline void foo(Data* d) { ...
2
votes
1answer
40 views

Arduino ultrasonic initialisation issue

Hardware: Arduino MEGA 2560 2 x MaxBotix MaxSonar-EZ0 Software (relating to Ultrasonics, by no means the entire program): void setup() { Serial.begin(9600); //Ultrasonic Left ...
-1
votes
1answer
86 views

why a is 2130567168 for a in c++?

#include <iostream> class X { public: int a; }; int main(int argc, char *argv[]) { X x; std::cout<<x.a<<std::endl; } why is 2130567168? not 0?
0
votes
3answers
38 views

Why doesn't java.lang.ExceptionInInitializerError have a constructor with both message and cause?

I use java.lang.ExceptionInInitializerError to rethrow caught exceptions in static initialisation blocks. I noticed it is not possible to construct with both a message and a cause; only one or the ...
0
votes
1answer
79 views

org.eclipse.birt.report.service.api.ReportServiceException: Error happened while running the report

I have a BIRT report in my app that uses hibernate as datasource. It keeps giving me an error like above. These reports are running on my team mates workstation so I am not sure what is happening to ...
3
votes
1answer
69 views

new[size] object(args … ) , GCC parenthesized initializer in array new [-fpermissive]

I've a problem with my code that I don't realy understand. I use «gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1)» Edit : I use this line to compile g++ -g -std=c++0x -o "GeneticEngine.o" -c ...

1 2 3 4 5 58