Tagged Questions
May refer to Linux Init - the parent of all processes, which primary role is to create processes from a script stored in the file /etc/inittab. Or abbreviation of initizlization - giving variables a "starting" value.
37
votes
8answers
10k views
In Objective-C why should I check if self = [super init] is not nil?
I have a general question about writing init methods in Objective-C.
I see it everywhere (Apple's code, books, open source code, etc.) that an init method should check if self = [super init] is not ...
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?
11
votes
4answers
2k views
Subclassing dict: should dict.__init__() be called?
Here is a twofold question, with a theoretical part, and a practical one:
When subclassing dict:
class ImageDB(dict):
def __init__(self, directory):
dict.__init__(self) # Necessary??
...
9
votes
2answers
275 views
Linux blocking signals to Python init
This is a follow up to my other post Installing signal handler with Python. In short, Linux blocks all signals to PID 1 (including SIGKILL) unless Init has installed a signal handler for a particular ...
8
votes
2answers
402 views
Python logging: Why is __init__ called twice?
I am trying to use python logging with a config file and an own handler. This works to some degree. What really puzzle me is __init__ being called twice and __del__ being called once. When I remove ...
8
votes
3answers
2k views
For iPhone OS 4.0 “dateFromString” method of NSDateFormatter returns nil
Hi
I am using following code & its working perfectly fine in iPhone OS 3.2
+(NSDate *)NSDateFromString:(NSString *)dateString
{
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] ...
8
votes
6answers
2k views
Why are alloc and init called separately in Objective-C?
Note: I'm relatively new to Objective-C and am coming from Java and PHP.
Could someone explain to me why I always have to first allocate and then initialize an instance?
Couldn't this be done in the ...
7
votes
1answer
567 views
Help understanding jQuery's jQuery.fn.init Why is init in fn
I was looking over the jQuery to better understand how it works. The constructor basically just calls
new jQuery.fn.init
I was wondering what is the point of having the init inside jQuery's ...
7
votes
4answers
1k views
Guice call init method after instantinating an object
Is it possible to tell Guice to call some method (i.e. init()) after
instantinating an object of given type?
I look for functionality similar to @PostConstruct annotation in EJB 3.
7
votes
4answers
3k views
HttpModule Init method is called several times - why?
I was creating a http module and while debugging I noticed something which at first (at least) seemed like weird behaviour.
When i set a breakpoint in the init method of the httpmodule i can see that ...
6
votes
4answers
94 views
Why is it not reccomended to allocate and initalize with id?
In the following example, what are the possible problems that can occur.
id c = [Person alloc];
[c init];
6
votes
4answers
228 views
Why not throw an exception if [super init] returns nil?
This is considered typical
- (id)init {
self = [super init];
if (self) {
// <#initializations#>
}
return self;
}
but wouldn't it be better to go with something like ...
6
votes
5answers
4k views
python __init__ how to return a value
I have a class with an __init__ function.
How can I return an integer value from this function when an object is created?
I wrote a program,where init does command line parsing and I need to have ...
6
votes
1answer
440 views
Should I always release self for failed init methods?
Should I always release self when there is a failure inside init, or should I only do so if I have initialized instance variables first?
To put it another way, is this pattern valid? Is there a time ...
5
votes
5answers
404 views
Upstart init is leaking memory, how do you debug it?
I've got a memory leak in Upstart init process (pid 1), what options I have on debugging it?
EDIT: Suggest me some real tools for this, manually putting printfs or calculating memory allocations by ...
5
votes
1answer
810 views
ExtJS accordion init component while collapsed
I have following problem in EXTJS:
I have an accordion layout with 2 panels.
the first panel is for choosing an element and if you doubleclick the detail will be displayed in the second panel.
...
5
votes
1answer
412 views
How to set which control has focus on Application start
In C#/Winforms how do I set the default focus when my application starts?
5
votes
4answers
507 views
Is there any reason to choose __new__ over __init__ when defining a metaclass?
I've always set up metaclasses something like this:
class SomeMetaClass(type):
def __new__(cls, name, bases, dict):
#do stuff here
But I just came across a metaclass that was defined ...
5
votes
3answers
2k views
Can I you use __init__.py to define global variables?
I want to define a constant that should be available in all of the submodules of a package. I've thought that the best place would be in in the __init__.py file of the root package. But I don't know ...
4
votes
4answers
249 views
Python: Inherit the superclass __init__
I have a base class with a lot of __init__ arguments:
def BaseClass(object):
def __init__(self, a, b, c, d, e, f, ...):
self._a=a+b
self._b=b if b else a
...
All the ...
4
votes
5answers
221 views
__init__ and arguments in Python
I'm begginer of Python. I want to understand arguments of __init__.
class Num:
def __init__(self,num):
self.n = num
def getn(self):
return self.n
def getone():
...
4
votes
3answers
191 views
Avoid Redundancy in Python
I recently started using Python 2.6 for Ubuntu Server admin and have two minor issues concerning redundancy:
First thing are imports: They all look something like
import Class from Class
from ...
4
votes
2answers
1k views
Difference with creating and adding controls in PreInit Init
There's tons of info on the web about the ASP.NET life cycle, but i can't seem to figure out when to dynamically add controls to the page.
In general there are two situations; an aspx page with a ...
4
votes
2answers
268 views
Using module's own objects in __main__.py
I am trying to access a module's own data inside it's __main__.py.
The structure is as follow:
mymod/
__init__.py
__main__.py
Now, if I expose a variable in __init__.py like this:
__all__ ...
4
votes
5answers
579 views
friendly classes in c#
actually i refactor some portion of code.
what i want to do is to initialize an object "Task" with an object "TaskArgument".
let s say "TaskArgument" is abstract and "Task" implements a method ...
4
votes
3answers
200 views
Difference between defining a member in __init__ to defining it in the class body in python?
What is the difference between doing
class a:
def __init__(self):
self.val=1
to doing
class a:
val=1
def __init__(self):
pass
4
votes
3answers
621 views
Cleanest way to define classes in Python?
I want to define classes in Python, but I'm currently putting them in modules, contained within packages.
Is there a cleaner way of doing this? Is it okay to define classes in __init__.py of the ...
4
votes
4answers
2k views
How does inheriting from NSObject work?
There are a couple of things about Objective-C that are confusing to me:
Firstly, in the objective-c guide, it is very clear that each class needs to call the init method of its subclass. It's a ...
4
votes
3answers
758 views
question about ColdFusion component constructor name
i have some questions about constructors in ColdFusion :
must i use the name init as the constructor name?
if i create an instance of the component without invoking the init method, what is ...
3
votes
2answers
100 views
Python multi-inheritance, __init__
Regarding multiple parent inheritance, when I call the super.__init__, why doesn't parent2's __init__ function get called? Thanks.
class parent(object):
var1=1
var2=2
def ...
3
votes
2answers
54 views
Will initWithFrame: trigger init?
I made a subclass of UIImageView and I want to add something to be triggered whenever I call initWithFrame or initWithImage or Init...
-(id) init {
[super init];
NSLog(@"Init triggered.");
}
If ...
3
votes
1answer
115 views
Why would [super init] ever return nil, when “super” is NSObject? [closed]
Possible Duplicate:
In Objective-C why should I check if self = [super init] is not nil?
In Objective-C book i am reading, it is said that when [init] message is sent to NSObject, on ...
3
votes
3answers
61 views
always mandatory or sometimes optional?
As i was reading through the book on Objective-C, i came across an example that initialized a class as follows:
ClassName *p = [[ClassName alloc] init];
While it makes sense that first we need to ...
3
votes
1answer
115 views
Fetching the kernel parameters passed via bootloader (grub)
How can be accessed kernel parameters (passed via Grub) in initramfs's init script?
I have idea to introduce some param and use use it init like if(myparam == 0) {} else {}
3
votes
3answers
504 views
Elements keeping original values in jQuery objects after PostBack
I am using ASP.NET 3.5 combined with the atrocious UpdatePanel, jQuery.delegate(), and JavaScript object literals.
I use jQuery.delegate() to persist the event handlers, which do get triggered after ...
3
votes
1answer
268 views
Object initialization sequence in Objective-C
The Cocoa framework has a convention to always call self = [super init] in the init method of an inherited class, because [super init] may return a new instance.
What will happen if I do this?
...
3
votes
3answers
172 views
Would it be correct/ellegant use only alloc without init?
If we don't want to implement init method in our class, and bearing in mind that init in NSObject only returns an instance of the object without initialization, I don't see the point of calling init ...
3
votes
3answers
2k views
Success with start-stop-daemon and mono-service2?
Has anyone had any success using start-stop-daemon and mono-service2 together? I've been fighting this for a few days now and have gotten various bits to work, but have had no success in getting a ...
3
votes
3answers
3k views
What is causing “unbound method __init__() must be called with instance as first argument” from this Python code?
I have this class:
from threading import Thread
import time
class Timer(Thread):
def __init__(self, interval, function, *args, **kwargs):
Thread.__init__()
self.interval = ...
3
votes
5answers
1k views
Python, __init__ and self confusion
Alright, so I was taking a look at some source when I came across this:
>>> def __parse(self, filename):
... "parse ID3v1.0 tags from MP3 file"
... self.clear()
... ...
3
votes
1answer
1k views
Servlet constructor and init() method
Why do we need an init() method in servlet? Can't we use the constructor to initialization?
2
votes
3answers
116 views
what does object's __init__() do in python?
I'm reading the code of OpenStack and I encountered this.
A class named 'Service' inherits the base class 'object', and then, in Service's __init__() method, object's __init__ is called. The related ...
2
votes
2answers
93 views
Python: Inheritance and default values in __init__
I am trying to make a class with generic __init__ values, but have defaults for its subclasses, as so:
class Enemy:
def __init__(self, difficulty, power, MaxHP, magic, MaxMP, speed, name):
...
2
votes
2answers
293 views
Tomcat - Servlet init() called twice upon startup
I have an issue with a standalone Tomcat server (not linked with Apache).
When Tomcat starts up, the init() method of the servlet is getting called twice, i.e., two servlets are starting up. Even ...
2
votes
2answers
751 views
iOS: UIView subclass init or initWithFrame:?
I made a subclass of UIView that has a fixed frame. So, can I just override init instead of initWithFrame:? E.g.:
- (id)init {
if ((self = [super initWithFrame:[[UIScreen mainScreen] bounds]])) {
...
2
votes
3answers
67 views
NSMutableArray initialization
I'm very newby on Objective C. I've read a lot of topics related but couldn't get solution.
I'm using a NSMutableArray, and alloc and init by the following mode:
events = [[NSMutableSet alloc] ...
2
votes
3answers
175 views
git add all ignoring files in gitignore
I am adding source control to a project that had none. The problem is that there are a lot of files to initially add to git with a .gitignore file, but I can't figure out how to add all files without ...
2
votes
2answers
175 views
Passing Linux boot opts to Init
I would like to pass some parameters to a customized Linux init via the boot options configured in the bootloader at boot.
I've written test init's in both Python and C. The Python version is able ...
2
votes
2answers
401 views
How to monkey patch __init__ module in Python?
I know, I know, it's dirty and all. I want to know if it's possible to hijack the __init__ module of a Python module to replace it by your own.
I'm asking that because I need to prevent a django lib ...
2
votes
1answer
261 views
Include sql file to another sql file
Have specific sql file. It may be "connected" to some other more generic .sql init file.
Is it possible somehow include reference from one .sql to another .sql file for Oracle?
note: DB populated ...