Tagged Questions

2
votes
3answers
114 views

Can I create an anonymous, brace-initialized aggregate in C++?

One can create an anonymous object that is initialized through constructor parameters, such as in the return statement, below. struct S { S(int i_, int j_) : i(i_), j(j_) { } …
3
votes
4answers
95 views

C# - String within a string issue?

I am not sure what exactly the issue is here. I am working with 2 strings and I keeping getting the error "A field initializer cannot reference the non-static field, method, or pr …
0
votes
2answers
137 views

C# dictionary initializer compilation inconsistency

The following code compiles, but fails with a NullReferenceException: class Test { public Dictionary<string, string> Dictionary { get; set; } } static void Main(string[ …
3
votes
2answers
433 views

Static constructor equivalent in Objective-C?

I'm new to Objective C and I haven't been able to find out if there is the equivalent of a static constructor in the language, that is a static method in a class that will automati …
4
votes
6answers
574 views

Use of Initializers vs Constructors in Java

So I've been brushing up on my Java skills as of late and have found a few bits of functionality that I didn't know about previously. Static and Instance Initializers are two such …
0
votes
1answer
36 views

Environment-specific intializers for rails?

Can you configure rails to only run an initializer under certain environments? In my case I had to hack paperclip to work with Imagemagick on my dev box, so I have monkeypatched co …
3
votes
8answers
1k views

static constructors in C++? need to initialize private static objects

What I want to do is have a class with a private static data member. In java or C#, I can just make a "static constructor" that will run before I make any instances of the class. I …
1
vote
4answers
80 views

TCPL 5.9.9 (C++): Where would it make sense to use a name in its own initializer?

This is a question from the most recent version of Stroustrup's "The C++ Programming Language". I've been mulling this over in my head for the past couple days. The only thing I …
4
votes
3answers
219 views

Debugging a C# Object Initializer

Does anyone have any tips for debugging exceptions in a C# object initializer block? The object initializer syntax is basically all or nothing, which can make it especially difficu …
0
votes
2answers
315 views

Ruby on Rails: Error when running a rake task from initializer file

I have the file config/initializers/custom.rb In the file, there is only one line: `rake thinking_sphinx:start` I thought this was supposed to just execute the line like when t …
2
votes
4answers
404 views

What’s the difference between an object initializer and a constructor?

What are the differences between the two and when would use an "object initializer" over a "constructor" and vice-versa? I'm working with C#, if that matters. Also, is the object …
3
votes
5answers
219 views

Is it possible to use a c# object initializer with a factory method?

I have a class with a static factory method on it. I want to call the factory to retrieve an instance of the class, and then do additional initialization, preferablly via c# object …
1
vote
2answers
284 views

Dependency on fixture data in rails initializer

I have an initializer which sets a default that is used throughout the app. The value is an ActiveRecord model, I'm essentially caching it for the lifetime of the app: @@default_r …
4
votes
6answers
218 views

Is there any way to use an extension method in an object initializer block in C#

The simple demo below captures what I am trying to do. In the real program, I have to use the object initialiser block since it is reading a list in a LINQ to SQl select expression …