Tagged Questions
The initializer tag has no wiki summary.
40
votes
5answers
2k views
Why are C# 3.0 object initializer constructor parentheses optional?
It seems that the C# 3.0 object initializer syntax allows one to exclude the open/close pair of parentheses in the constructor when there is a parameterless constructor existing. Example:
var x = new ...
28
votes
14answers
24k views
static constructors in C++? need to initialize private static objects
I want to have a class with a private static data member (a vector that contains all the characters a-z). In java or C#, I can just make a "static constructor" that will run before I make any ...
19
votes
3answers
4k 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 automatically be called ...
17
votes
9answers
2k views
C++: constructor initializer for arrays
I'm having a brain cramp... how do I initialize an array of objects properly in C++?
non-array example:
struct Foo { Foo(int x) { /* ... */ } };
struct Bar {
Foo foo;
Bar() : foo(4) {}
...
15
votes
1answer
477 views
Objective-C: init vs initialize
In Objective-C, what is the difference between the init method (i.e. the designated initializer for a class) and the initialize method? What initialization code should be put in each?
13
votes
8answers
4k 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 techniques.
My ...
9
votes
3answers
4k views
Rails 3.1 Deployment to Heroku Error
I'm trying to deploy my app to Heroku, I've done this before on my Windows machine, and now I am currently using a mac.
I'm trying to use Postgresql for the first time.
I have the following in my ...
8
votes
5answers
191 views
Should I use the initializer list or perform assignments in my C++ constructors?
class Node
{
public:
Node *parent; // used during the search to record the parent of successor nodes
Node *child; // used after the search for the application to view the search in reverse
...
8
votes
1answer
138 views
Finding static initializers and destructors in C++
I have a program with way too many static initializers and destructors. I want to get rid of all of them. So i need a way to find them.
Running nm on the executable gives something like this:
...
8
votes
2answers
2k views
How to initialize member-struct in initializer list of C++ class?
I have the following class definitions in c++:
struct Foo {
int x;
char array[24];
short* y;
};
class Bar {
Bar();
int x;
Foo foo;
};
and would like to initialize the "foo" struct ...
8
votes
3answers
1k views
Rails initializer for development and production
I have the following code in /config/initializers/chargify.rb
Chargify.configure do |c|
c.subdomain = 'example'
c.api_key = '123xyz'
end
But I have different settings for development and ...
8
votes
4answers
2k 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 initializer method ...
7
votes
3answers
717 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 difficult to troubleshoot ...
6
votes
3answers
232 views
Java super-tuning, a few questions
Before I ask my question can I please ask not to get a lecture about optimising for no reason.
Consider the following questions purely academic.
I've been thinking about the efficiency of accesses ...
6
votes
5answers
294 views
Do these two C++ initializer syntaxes ever differ in semantics?
Assume that the following code is legal code that compiles properly, that T is a type name, and that x is the name of a variable.
Syntax one:
T a(x);
Syntax two:
T a = x;
Do the exact semantics ...
6
votes
5answers
470 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 initializer syntax ...
5
votes
2answers
110 views
How to prevent default initialization of a const variable with a class type
I have a custom class that I want to behave like a built-in type.
However I have noticed that you can initialise a const variable of that class without providing an initial value. My class currently ...
5
votes
2answers
577 views
scala foreach und map initializers
Just seen an interesting possibility to initialize code blocks in Scala for high order functions such as foreach or map:
(1 to 3) map {
val t = 5
i => i * 5
}
(1 to 3) foreach {
val line ...
4
votes
1answer
116 views
Are Objective-C initializers allowed to share the same name?
I'm running into an odd issue in Objective-C when I have two classes using initializers of the same name, but differently-typed arguments. For example, let's say I create classes A and B:
A.h:
...
4
votes
3answers
243 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_) { }
int i, j;
};
S f()
...
4
votes
6answers
317 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, and there is a ...
3
votes
1answer
90 views
When would a class ever have more than one designated initializer?
Reading through Apple's documentation on Tips and Techniques for Framework Developers, I came across this statement about designated initializers:
A designated initializer is an init method of a ...
3
votes
2answers
103 views
Java Initialization Block
Can someone help me understand the following construct? I am having trouble understanding if this is an initializer or an anonymous class. I am not familiar with this syntax.
JTable jt = new ...
3
votes
1answer
129 views
C++ array initializer. Using enum type
class ARouter {
enum directions {north, neast, east, seast, south, swest, west, nwest};
static directions gon[] = {north, neast, nwest, east, west, seast, swest, south};
};
Hi, does anyone ...
3
votes
1answer
147 views
Declare a Table Variable Based on Select Statement
I want to declare a table variable and fill it with a select, without having to explicitly define its columns. Does T-SQL allow something like this:
DECLARE @people TABLE() SELECT * FROM Persons;
...
3
votes
0answers
137 views
Why Railtie initializers are not executed?
While crafting the Passenger-Monit plugin, I thought that it'll be most appropriate to use the initializer, i.e.
module PassengerMonit
class Railtie < Rails::Railtie
initializer ...
3
votes
1answer
104 views
Defining Lua methods as initialization
In the Lua language, I am able to define functions in a table with something such as
table = { myfunction = function(x) return x end }
I wondered if I can created methods this way, instead of ...
3
votes
9answers
195 views
Why is an Add method required for { } initialization?
To use initialization syntax like this:
var contacts = new ContactList
{
{ "Dan", "dan.tao@email.com" },
{ "Eric", "ceo@google.com" }
};
...my understanding is that my ContactList type ...
3
votes
2answers
497 views
How can I access the Rails logger from an initializer?
Following the advice from my previous question, I placed my background process in an initializer named scheduler.rb. However, I'm having a hard time getting the newly-scheduled processes to log to the ...
3
votes
5answers
293 views
C++: newbie initializer list question
Newbie here. I am looking at company code.
It appears that there are NO member variables in class A yet in A's constructor it initializes an object B even though class A does not contain any ...
3
votes
4answers
202 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 can come up with, ...
2
votes
1answer
51 views
Rails initializer that runs *after* routes are loaded?
I want to set a class attribute when my Rails app starts up. It requires inspecting some routes, so the routes need to be loaded before my custom code runs. I am having trouble finding a reliable ...
2
votes
1answer
154 views
Rails 3.1: how to run an initializer only for the web app (rails server/unicorn/etc)
My webapp needs to encrypt its session data. What I setup is:
config/initializers/encryptor.rb:
require 'openssl'
require 'myapp/encryptor'
MyApp::Encryptor.config[ :random_key ] = ...
2
votes
6answers
191 views
Why doesn't initializer work with properties returning list<t>?
Couldn't find an answer to this question. It must be obvious, but still.
I try to use initializer in this simplified example:
MyNode newNode = new MyNode
{
NodeName = "newNode",
...
2
votes
1answer
36 views
why are initializers getting errors when upgrading from Rails 2 to Rails 3?
This is in my config/initializer/string.rb:
class String
include ClearCompany
end
I have lib/clear_company.rb
That is where I have a module ClearCompany.
2
votes
3answers
358 views
Class methods which create new instances
Apart from the standard [[MyClass alloc] init] pattern, some objects are built from static methods like MyClass *obj = [MyClass classWithString:@"blabla"]
According to widespread memory management ...
2
votes
1answer
83 views
Ensure that certain processes are running when my Rails app loads
I want to ensure that certain processes like Sunspot Solr search and delayed_job are running when my Rails 3 app initializes or loads.
I'm somewhat of a noob and from what I can tell, I could write a ...
2
votes
3answers
517 views
static initializers in objective C
How do I make static initializers in objective-c (if I have the term correct). Basically I want to do something like this:
static NSString* gTexts[] =
{
@"A string.",
@"Another string.",
}
...
2
votes
4answers
595 views
Basic C++: How do I initialize a struct member of a class?
I've looked all over the place, but haven't found an answer to this.
I have a C++ class with these protected members:
struct tm _creationDate;
struct tm _expirationDate;
struct tm _lockDate;
...
2
votes
1answer
673 views
Stop daemon with server in Ruby on Rails
I have a daemon that I'm starting along with the server using an initializer file.
I want to stop this daemon once the server stops, but I'm not sure where to put a script that would run when the ...
2
votes
3answers
433 views
How to handle a static final field initializer that throws checked exception
I am facing a use case where I would like to declare a static finalfield with an initializer statement that is declared to throw a checked exception. Typically, it'd look like this:
public static ...
2
votes
4answers
200 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 property ...
2
votes
3answers
1k 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[] args)
{
var x ...
2
votes
1answer
168 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 code I want only to ...
1
vote
2answers
29 views
How often do initializers run in Rails?
Do the initializers in a Rails app run each time someone visits the site?
For example, if my server is started in Texas at 10 a.m. , and someone visits my site from New York at 1 p.m. and someone ...
1
vote
4answers
70 views
static() method (without any decleration)
Say i have the following class:
public abstract class A()
{
public static final SomeString = null;
static()
{
SomeString = "aaa";
}
}
When this static method invokes and how?
...
1
vote
1answer
43 views
Abort the loading of a shared library from its initializer
I have a shared library that sets up shared memory in its initializer.
When I can't allocate the shared memory, I would like to abort the loading of this library by the calling program, so that this ...
1
vote
5answers
89 views
C++ Refactoring: Initialization Ordering In Constructors
Suppose I need to call a free GlobalInitializer() before my constructor initializes any member variables. For example:
class Foo {
public:
Foo() : bar_()
{
// calling ...
1
vote
0answers
84 views
Run an rspec “before” block before rails initializers run
I would like to run an rspec before block to set some stuff up before the Rails initializers run, so I can test what an initializer should be doing. Is this possible?
1
vote
1answer
219 views
How to set union in class initializer?
Given a class such as the one below and the given union, how does one initialize the union to the correct value?
What is being attempted here is to use two or more different types as one of the ...