The initializer tag has no wiki summary.
6
votes
3answers
182 views
Static Initialization in Go?
I'm currently working on the Go Lang tutorial, but ran into problem with one of the exercises:
http://tour.golang.org/#60
The exercise has me implement a ROT13 cipher. I decided to implement the ...
1
vote
1answer
41 views
Class not recognized by initializer
I'm pretty new to zf2 but I already setup a site working with it. I got some understanding of the serviceManager but now I'm stuck.
Here is the context : I want to implement a logger available on any ...
7
votes
1answer
210 views
Why can in-class initializers only use = or {}?
In-class initializers (C++11 feature) must be enclosed in curly braces or follow a = sign. They may not be specified inside parenthesis.
What is the reason for this?
2
votes
1answer
51 views
how to put array size inside array initializer itself in C?
I have an array that's used in a communication protocol (a USB device descriptor). This protocol calls for the array size in the array header. So I would like to do that (which is forbidden):
static ...
1
vote
2answers
55 views
Linked List in C error — Invalid Initalizer error
I am attempting to create a Linked List using C (NOT C++). The Linked List is initialized through the function llinit() which should return a list struct. However, when I compile the code I get an ...
0
votes
1answer
31 views
In AS3, how do I run code when a when the movie starts?
I'm making a level editor for my game, and would like to be able to access a list of all the classes included in my game. I have a static function in my Main class:
public static function ...
0
votes
1answer
33 views
Rails how to create an initializer inside a gem
I am trying to build a gem in Rails 3 and inside it i am trying to pass an initializer:
Credentials.configure do |config|
file = File.read("#{Rails.root}/config/twitter.yaml")
file_config = ...
3
votes
2answers
68 views
Cocoa Objective-C init oddity
I was reviewing some code and came across something that looked like this (assume it is defined for the TestObject class)
-(id) init
{
if (self == [super init])
{
self.testString = ...
3
votes
1answer
186 views
How to create initializer to create and migrate mysql database?
I have been learning how to use EF for a week or so now and am stuck on the issue of creating/updating my database. I am able to create an initializer to create the database if it is not there:
...
0
votes
3answers
61 views
Is it possible to programmatically check if an enum has an initializer set on it?
I want to get an enum as an int, but only if it has an initializer applied to it - so that I know that the value was explicitly defined and isn't just the default value. This is because I am using ...
1
vote
1answer
53 views
invalid initializer - C
I'm a beginner in C Programming language. I wanted to write a hashing program. I could do this program with a limited number of typedef name, but when I use dynamic allocation, invalid initializer's ...
0
votes
1answer
115 views
XCode IOS method input from const unsigned char for an array
Currently I have a number of instance methods for generating some data that I would like to change for a single method that takes an input which I pass to it, the compiler is telling me that the array ...
3
votes
2answers
50 views
Interface collection member strange behavior during object initialization
I run into runtime NullReferenceException exception in the following code:
public class Container
{
public IList<string> Items { get; set; }
}
class Program
{
static void Main(string[] ...
0
votes
1answer
54 views
During testing, why is rails running my initializers twice?
I've created a brand new rails app, added a dummy controller, with an 'assert true' functional test, and an initializer that calls 'puts Rails.env'.
When I run rake test on this app, the initializer ...
3
votes
2answers
57 views
About collection initializers in c#
I admit I'm far from experienced with c#, so this may be obvious, but I have to ask -- is there any difference between the two code samples? In case it's not obvious, the first statement omits () at ...
1
vote
1answer
34 views
Rails: Translation in Initializer
I have several translations tucked away into an initializer like so:
GROUP_GOVERNANCE_STYLES = [
[I18n.t("constants.group_governance_styles.collective"), 1],
...
0
votes
1answer
100 views
Issues with creating a CCParallaxNode in cocos2d?
I'm using a CCParallaxNode for a scrolling background in my GameLayer and I'm getting a bunch of errors and I can't figure out why.
"Initializer element is not a compile-time constant" and also "Unk
...
0
votes
2answers
73 views
Must an Objective-C class have exactly one designated initializer?
I found some info of the designated initializer in this Apple's docs, but what I don't understand is, must each class have one and only one designated initializer?
For example, what if class A has ...
0
votes
1answer
57 views
iOS error, message sent to deallocated instance
I have written my own class (subclass of a NSObject) and have also written a custom initializer for it. The problem I am running into is, when I start my application, and call the refreshData instance ...
1
vote
0answers
52 views
rails variable from before_configuration not available in database.yml
I've written my own yaml config file as described in railscast #85. APP_CONFIG['FOO'] works in the initializers (e.g. sidekiq.yml), but not in database.yml (error: undefined method '+' for ...
2
votes
3answers
70 views
C# how to invoke a field initializer using reflection?
Say I have this C# class
public class MyClass {
int a;
int[] b = new int[6];
}
Now say I discover this class using reflection and while looking at the fields I find that one of them is of ...
0
votes
3answers
755 views
CoreData: error: Failed to call designated initializer on NSManagedObject class
I have a little damn problem with CoreData. I want to insert a new Object, so I first have to create one. This is done by that code:
Challenges *newChallenge = [[Challenges alloc] init];
...
-3
votes
4answers
91 views
Java character array initializer
I tried to make a program that separate characters .
The question is
"Create a char array and use an array initializer to initialize the array with the characters in the string "Hi there". Display ...
3
votes
3answers
105 views
Strange code on Java Static Initialization Blocks
When going through the JLS 8.3.2.3 I wasn't able to understand the following code.
class Z {
static { i = j + 2; }
static int i, j;
static { j = 4; }
}
The code is resulting in the error Cannot ...
14
votes
4answers
321 views
Java double brace initialization works always?
I know that this code:
Set<String> set = new HashSet<String>() {{
add("test1");
add("test2");
}};
is really:
Set<String> set = new HashSet<String>() {
{//initializer
...
75
votes
8answers
2k views
Calling a Java method with no name [duplicate]
Possible Duplicate:
Java independent block of code
I'm looking at the code below and found something a bit strange:
public class Sequence {
Sequence() {
System.out.print("c ");
...
0
votes
1answer
1k views
C: warning: excess elements in array initializer; near initialization for ‘xxx' ; expects ‘char *’, but has type ‘int’
I've some warnings while trying to compile program in C language:
13:20: warning: excess elements in array initializer [enabled by default]
13:20: warning: (near initialization for ‘litera’) ...
0
votes
2answers
111 views
Objective-c class initializer executes multiple times
Unless I misunderstood it, this LINK from Apple's documentation clearly states that the class initializer, "+ (void)initialize)", only executes once per class.
Here is the excerpt:
Special ...
0
votes
1answer
29 views
.Net return initializer?
I’m trying to get my head around this. I know about object initializers in recent versions of .Net but the code below confuses me. First is the calling code, and below that I’ve put the needed class ...
0
votes
1answer
61 views
global values not updating when changed in config/initializers/constants.rb in Rails
I am working on a rails project and I am trying to update some of the global arrays used for selection fields in the application. I went into the constants.rb file where all the array definitions ...
1
vote
2answers
68 views
Initialize a container that is a private member variable of a class
I have a list<string> myList as a private attribute of my class. The content of this list is known at compile time and is constant. Is there any compact way (in C++03) to initialize its value? I ...
0
votes
1answer
146 views
Member initializer list in definition or declaration?
Should I declare the member initializer list for a class in the constructor declaration:
class A
{
public:
A(int data) : theData(data);
};
or in the constructor definition:
A::A(int data) : ...
0
votes
1answer
455 views
How to check if database schema matches Entity Framework schema?
For my surprise, using the CreateDatabaseIfNotExists context initializer, the line
context.Database.Initialize(true)
doesn't throw an exception if the schema does not match my code first schema.
...
1
vote
3answers
111 views
C programming strtok issue
I am using strtok to extract 2 words from a string names[result]. I want to get the first value from the strtok and stored it into a char array named lastName and the second value into a char array ...
2
votes
1answer
777 views
initializer_list in visual studio 2012
I found that initializer_list is not supported by MSVC 2012. But can it (initializer_list)
be used in VS somehow (with the help of Boost library for example). Samples if you can, please.
-3
votes
1answer
200 views
How do I fix “missing braces around initializer”? [closed]
I am working on a game and I ran my code and got the error "missing braces around initializer," and the error, "(near initialization for 'job'." I don't know what this means, so how do I fix it? Here ...
0
votes
2answers
151 views
What is an invalid initializer? Where is it in my code, and how do I correct it?
I am running my code on compilr.com and am using C as my language. I am trying to make a simple game where you have an inventory and start out with $100. You gain money by doing jobs secretly for ...
0
votes
3answers
563 views
What has happened to less in Twitter Bootstrap on Initializr.com?
I just kickstarted a new project with Initializr. First I realized that the options for the stylesheet was removed and later I realized that Twitter Bootstrap doesn't come with LESS as default ...
0
votes
2answers
297 views
python multiprocessing - Best way to initialize/pass database connection to be used across processes
I am having some difficulty in passing a database connection object or the cursor object using pool.map in the Python multiprocesing package. Basically, I want to create a pool of workers each with ...
0
votes
2answers
80 views
Does 'heroku restart' automatically calls the initializers in a rails app?
I've recently added some codes in the initialiser file of my rails application. Like any other rails app, I have to restart the app for it to call the initializers again. Does 'heroku restart' does ...
0
votes
1answer
337 views
Access environment variable inside initializers Ruby on Rails
In my web application I want to access environment variables inside my initializers file.
My intiailizer file looks like(initializers/gcm_on_rails.rb)
configatron.gcm_on_rails.api_url = ...
0
votes
2answers
80 views
session_store initializer working in production, but not development
I have a site with multiple subdomains, and have added :domain => :all to my session store as follows, so that my logins persist across all subdomains.
`MyApp::Application.config.session_store ...
2
votes
1answer
70 views
Storage of variables without initializing an objet? Ruby Gem 'Mail'
Working with the Ruby Gem 'Mail', I am confused as to how variables are able to be stored without initializing an object? For example:
Mail.defaults do
retriever_method :pop3, :address => ...
0
votes
0answers
113 views
“the type initializer for <module> threw an exception” while launching objectexplorer in sqlserver management sudio
I am getting the error
"the type initializer for threw an exception"
while launching objectexplorer in sqlserver management sudio . I have reinstall SqlServer 2008 R2 but still the error exist ...
2
votes
1answer
103 views
Calling a class method upon creation of Python classes
I'd like to automatically run some code upon class creation that can call other class methods. I have not found a way of doing so from within the class declaration itself and end up creating a ...
2
votes
3answers
96 views
Resolve a circular static reference
I have 2 static initializers trying to call each other:
one in a Configuration class, that reads configuration parameters from a properties file;
one in a LoggerFactory class, which sets up the ...
0
votes
1answer
112 views
Event default initializer
I used to utilize the following:
public event EventHandler OnComplete = delegate { };
I'm not sure, how this is called, is this an "event default initializer"??
But the problem appeared to be when ...
1
vote
3answers
717 views
initialize a union array at declaration
I'm trying to initialize the following union array at declaration:
typedef union { __m128d m; float f[4]; } mat;
mat m[2] = { {{30467.14153,5910.1427,15846.23837,7271.22705},
...
0
votes
6answers
757 views
C Programming const array initializer
GCC tells me the following: Transformations.h:16:1: error: initializer element is not constant
Here is the code:
const int X_ORIGIN = 1233086;
const int Y_ORIGIN = -4728071; ...
2
votes
2answers
532 views
Does Rails run initializers for rake task?
Are the scripts from config/initializers executed when I run rake task?






