0
votes
3answers
56 views
Nested struct variable initialization
How can I initialize this nested struct in C?
typedef struct _s0 {
int size;
double * elems;
}StructInner ;
typedef struct _s1 {
StructInner a, b, c, d, e;
long f;
…
3
votes
2answers
39 views
In what order are the different parts of a class initialized when a class is loaded in the JVM?
Imagine a Java class which has most features that you can find in a class. For example: it inherits from another class, implements a couple of interfaces, includes some 'static fin …
1
vote
1answer
72 views
When is it ok to change object state (for instance initialization) on property getter access?
(except for proxy setup!)
I spent some time writing a question here regarding a better pattern for a problem I had - of a class that performed some conditional initialization on a …
1
vote
2answers
105 views
In C#, is there a way to write custom object initializers for new data-types?
In C#, there's the "standard" initializer technique { Property1 = "a", Property2 = "b" }, and there are a couple of special variants for collections (list and dictionary). {value1 …
2
votes
4answers
62 views
Suggest the best way of initialization…
Hi,
I am a bit confused in the following two ways of initialisations.....
Way 1:
- (void) myMethod{
NSArray *myArray = [[NSArray alloc] initWithObjects:obj1,obj1,nil];
…
1
vote
1answer
91 views
Multiple initializers in a Go if statement
Just discovered Go, and am very curious so far.
I know I'm just being lazy, but I want to know if it is possible to initialize multiple variables in an if statement. I know that th …
0
votes
1answer
26 views
Is Shared ReadOnly lazyloaded?
Hello!
I was wondering when I write
Shared ReadOnly Variable As DataType = New DataType()
Or alternatively
Shared ReadOnly Variable As New DataType()
Is it lazy loaded or …
1
vote
3answers
85 views
Initializing array of objects with data from text file
I’m getting system error when I try to compile the code below on Visual C++ 2008 Express. What I’m trying to do is to initialize array of objects with data read from file. I thin …
1
vote
2answers
67 views
How do I get Google Closure to call my init function when DOM tree finished
I am looking for something like the $(document).ready function in jQuery, as I work on experimenting with using Closure.
So, my question is simple, is there a function I am missin …
2
votes
3answers
82 views
Visual studio 2005: is there a compiler option to initialize all stack-based variables to zero?
This question HAS had to be asked before, so it kills me to ask it again, but I can't find it for all of my google and searching stackoverflow.
I'm porting a bunch of linux code t …
2
votes
3answers
83 views
How to initialize a shared library on Linux
Hi there,
I am developing a shared library using c++ under Linux. I would like to user log4cxx for logging purposes. However, I'm not sure how to initialize this. For log4cxx I ne …
1
vote
4answers
130 views
Adding elements to an STL Map in a constructors Initialization List?
I was wondering if this was possible, and if so how I'd go about doing so. If it's not possible I'll just have to add the elements during the constructor body.
Ideally I would li …
0
votes
2answers
31 views
Spring web Dependency Injection(IOC) and the ServletContextListener
Hi all,
I have code which is structured as Spring beans and dependencies among them. This is only a small part of the code since the rest is 'legacy' code.
At this point in time …
1
vote
4answers
176 views
How can I initialize a String array with length 0 in Java?
The Java Docs for the method
String[] java.io.File.list(FilenameFilter filter)
includes this in the returns description:
The array will be empty if the directory is empty or if …
1
vote
3answers
35 views
hibernate post initialization
I would like to initialize class members of a persisted object as soon as Hibernate loads the object from the database.
How can I do this ?
More specifically: In the following pe …
