Tagged Questions
2
votes
1answer
107 views
When using !(self::$_instance instanceof self) why does this fail to work
I recently had written some code to deal with instantiating a object, assigning a object and some data to the objects properties and then perform a call to a method in order to do something.
But when ...
0
votes
1answer
104 views
Objective-C delegate or self is morphing classes
I have 2 UIViewControllers(A,B). A is set as the delegate for B and then B is presented. The protocol is set up in B's header:
@protocol BDelegate <NSObject>
- (IBAction)finishOrder:(id)sender;
...
1
vote
2answers
81 views
Access previous values within object during declaration [duplicate]
Possible Duplicate:
Self-references in object literal declarations
var obj = {
value: 10,
value2: value + 2
};
How can I do the above? (Assuming it's even possible)
I am using a ...
2
votes
5answers
410 views
Understanding self in Objective-C
The code below is from an iTunes U course on iPhone dev in Objective-C. I've read the Apple documentation and it's all very very clear with the exception of self. I sort of understand self to be a ...
1
vote
2answers
144 views
creating a variable name dynamically
I have this code to create an interface and some buttons (python in maya)
class mrShadowMapChangerUI:
def __init__(self):
smAttrs = ...
6
votes
2answers
3k views
Python - self, no self and cls
Yet another question on what the 'self' is for, what happens if you don't use 'self' and what's 'cls' for.
I "have done my homework", I just want to make sure I got it all.
self - To access an ...
2
votes
5answers
111 views
How to get the name of an object in Ruby?
I want to write a simple debug method in Ruby for my Rails app:
foo = "bar"
debug(foo)
The debug method would return the string "foo: bar".
How do you get the name of the object (foo, in this ...
19
votes
2answers
9k views
What is the 'cls' variable used in python classes?
Why is 'cls' used instead of 'self'?
Any help appreciated
5
votes
2answers
686 views
Called child´s constant not available in static function in parent
I have a static function in a class that needs to be called from several child classes. I need a constant from the calling child class to be available in that function. To have these constants ...