A keyword used in instance methods to refer to the object on which they are working.
110
votes
9answers
59k views
Python 'self' explained
What is the purpose of the self word in Python? I understand it refers to the specific object created from that class, but I can't see why it explicitly needs to be added to every function as a ...
33
votes
2answers
10k views
Objective C - Calling [self methodName] from inside a block?
I've just run into blocks and I think they are just what I'm looking for, except for one thing: is it possible to call a method [self methodName] from within a block?
This is what I'm trying to do:
...
31
votes
3answers
5k views
Instance variable: self vs @
I saw a code
class Person
def initialize(age)
@age = age
end
def age
@age
end
def age_difference_with(other_person)
(self.age - other_person.age).abs
end
protected :age
end
...
31
votes
4answers
13k views
Objective C : Release, Dealloc, and the Self reference
So I thought I had all these questions all figured out. Then all of a sudden I get an error (a crash) I can't figure out. Then after doing research to remedy the crash, I notice everything that I ...
26
votes
4answers
13k views
What does new self(); mean in PHP?
I've never seen code like this:
public static function getInstance()
{
if ( ! isset(self::$_instance)) {
self::$_instance = new self();
}
return self::$_instance;
}
Is it the ...
22
votes
4answers
8k views
Python decorators in classes
Can one write sth like:
class Test(object):
def _decorator(self, foo):
foo()
@self._decorator
def bar(self):
pass
This fails: self in @self is unknown
I also tried:
...
20
votes
2answers
9k views
What is the 'cls' variable used in python classes?
Why is 'cls' used instead of 'self'?
Any help appreciated
19
votes
7answers
3k views
Python: How to avoid explicit 'self'?
I have been learning Python by following some pygame tutorials.
Therein I found extensive use of the keyword self, and coming from a primarily Java background, I find that I keep forgetting to type ...
19
votes
6answers
9k views
Assigning to self in Objective-C
I'm from the C++ world so the notion of assigning this makes me shudder:
this = new Object; // Gah!
But in Objective-C there is a similar keyword, self, for which this is perfectly acceptable:
...
17
votes
1answer
2k views
Why isn't self always needed in ruby / rails / activerecord?
In testing a getter/setter pair in a rails model, I've found a good example of behavior I've always thought was odd and inconsistent.
In this example I'm dealing with class Folder < ...
16
votes
5answers
1k views
Why is Self assignable in Delphi?
This code in a GUI application compiles and runs:
procedure TForm1.Button1Click(Sender: TObject);
begin
Self := TForm1.Create(Owner);
end;
(tested with Delphi 6 and 2009)
why is Self writable ...
12
votes
4answers
2k views
What does 'self' refer to in a @classmethod?
I thought I was starting to get a grip on "the Python way" of programming. Methods of a class accept self as the first parameter to refer to the instance of the class whose context the method is being ...
12
votes
3answers
521 views
When to use `self.foo` instead of `foo` in Ruby methods
This is not specific for Rails - I am just using Rails as an example.
I have a model in Rails:
class Item < ActiveRecord::Base
def hello
puts "Hello, #{self.name}"
end
end
(Let's say ...
10
votes
2answers
2k views
What's the Point of Using [self class]
Is this code correct
@implementation Vehicle
+(id) vehicleWithColor:(NSColor*)color {
id newInstance = [[[self class] alloc] init]; // PERFECT, the class is // dynamically identified
...
9
votes
5answers
4k views
How to call an Objective-C Method from a C Method?
I have an Obj-C object with a bunch of methods inside of it. Sometimes a method needs to call another method inside the same object. I can't seem to figure out how to get a C method to call a Obj-C ...
8
votes
4answers
3k views
Ruby Definition of Self
I was reading a Ruby book and came across this definition of the pseudo-variable self:
self - receiver object of the current
method
Could someone break down that definition and explain what it ...
8
votes
5answers
1k views
How to get self into a Python method without explicitly accepting it
I'm developing a documentation testing framework -- basically unit tests for PDFs. Tests are (decorated) methods of instances of classes defined by the framework, and these are located and ...
8
votes
2answers
8k views
Obj-C: @synchronized(self)
I have something read in foreign code and I want to ensure my assumption:
@synchronized(self) is used to get rid of the self. prefix.
So in my example I set the strText not in the function I set ...
8
votes
4answers
492 views
How does a python method automatically receive 'self' as the first argument?
Consider this example of a strategy pattern in Python (adapted from the example here). In this case the alternate strategy is a function.
class StrategyExample(object):
def __init__(self, ...
8
votes
3answers
4k views
(Ruby,Rails) Context of SELF in modules and libraries…?
Quick question regarding the use of "SELF" inside a module or library. Basically what is the scope/context of "SELF" as it pertains to a module or library and how is it to be properly used? For an ...
7
votes
1answer
10k views
WPF Bind to itself
I've got a WPF Window, and somewhere there is a ListView where I bind a List<string> to.
Now somewhere in my ListView there is a TextBox and the Content property is set to {Binding}.
But this ...
7
votes
6answers
1k views
When should I use the “self” keyword?
When should I be using the self expression in my iphone development applications? say i have 2 fields: UITextField *text1; and NSString *str1; retained and synthesized.
when i am accessing either of ...
7
votes
2answers
724 views
Difference between Instance and Self Variables
What is the difference between instance variables and self variables?
class Complex:
a = 1
and
class Complex:
def __init__(self):
self.a = 1
Using the call: x = Complex().a in ...
7
votes
4answers
3k views
self property in javascript?
I read here that "self Refers to the current window or form".
Self does not seem to refer to the current form in this case:
<form><input type="text" onkeyup="alert(self.foo.value)" ...
7
votes
1answer
174 views
Aliasing this in scala with self =>
Some Scala APIs alias this to self, for example,
trait Function1[-T1, +R] extends AnyRef { self =>
I know how this aliasing works in general, but don't see how traits such as Function1 benefit ...
6
votes
3answers
608 views
Ruby's self vs. Python's self [duplicate]
Possible Duplicate:
What is the difference between Ruby and Python versions of“self”?
Ruby and Python are similar languages that both have a self keyword used in various ...
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 ...
6
votes
3answers
3k views
class, dict, self, init, args?
class attrdict(dict):
def __init__(self, *args, **kwargs):
dict.__init__(self, *args, **kwargs)
self.__dict__ = self
a = attrdict(x=1, y=2)
print a.x, a.y
b = attrdict()
b.x, b.y ...
6
votes
2answers
175 views
Does a typedef to self have any effect?
I've come across some C++ code that has the following:
typedef Request Request;
Is this just a no-op or does this typedef actual have an effect, and if so, what effect does it have?
6
votes
3answers
938 views
is there a self flag can reference python function inside itself?
I can access a python function's attribute inside of function itself by below code:
def aa():
print aa.__name__
print aa.__hash__
# other simliar
however, if above aa() function is a ...
6
votes
6answers
510 views
python and using 'self' in methods
From what I read/understand, the 'self' parameter is similiar to 'this'.
Is that true?
If its optional, what would you do if self wasnt' passed into the method?
6
votes
3answers
465 views
Attribute assignment to built-in object
This works:
class MyClass(object):
pass
someinstance = MyClass()
someinstance.myattribute = 42
print someinstance.myattribute
>>> 42
But this doesn't:
someinstance = object()
...
5
votes
3answers
419 views
5
votes
2answers
860 views
Why use [ClassName alloc] instead of [[self class] alloc]?
I'm reading through Mark Dalrymple's Learn Objective-C on the Mac (only at the chapter on Protocols, so still relatively newbish) and trying to figure something out:
Why would you ever reference a ...
5
votes
2answers
691 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 ...
5
votes
5answers
898 views
Objective-C: When to call self.myObject vs just calling myObject
This little bit of syntax has been a bit of a confusion for me in Objective-C.
When should I call self.myObject vs just calling myObject?
It seems redundant however they are not interchangeable.
...
5
votes
2answers
1k views
Rails — self vs. @
I am following Michael Hartl's RoR tutorial, and it is covering the basics of password encryption. This is the User model as it currently stands:
class User < ActiveRecord::Base
attr_accessor ...
5
votes
3answers
169 views
Is there a standard naming convention for self-identifiers in F#? [duplicate]
Regarding F# self-identifier's as in:
type MyClass2 =
let data = 123
member whateverYouWant.PrintMessage() =
printf "MyClass2 with Data %d" data
The F# class documentation says:
...
5
votes
2answers
208 views
Javascript: Self and This
Can anyone explain why do I get different values of self and this? Where self is a reference to this.
function Parent(){
var self = this;
this.func = function(){
// self.a is undefined
...
5
votes
2answers
174 views
How to count similar interests in MySQL
I have 2 tables, 'interests' and 'users_interests'.
'users_interests' just has userid and interestid fields.
'interests just has an id and a name.
I simply need to find userid's who have more than ...
4
votes
4answers
2k views
In Ruby, inside a class method, is self the class or an instance?
I know that self is the instance inside of an instance method. So, then, is self the class inside of a class method? E.g., Will the following work in Rails?
class Post < ActiveRecord::Base
def ...
4
votes
4answers
2k views
Use of ruby self keyword?
from what I understand of the self keyword, it simply refers to the current instance of the class. Isn't this the default behaviour at all times anyways? For example, isn't
self.var_one = ...
4
votes
3answers
1k views
Difference between class property mVar and instance variable self.mVar
I am some what confused as to the difference between accessing an instance variable via self or just by name (when working inside the class).
For instance, take this class:
//In .h file:
@interface ...
4
votes
2answers
830 views
Inheriting instance variables in Objective-c
In Objective-c 2.0 why do subclasses need to reference instance variables in parent classes using the self keyword?
Consider this example:
// a.h
@interface MyClass : NSObject
@property (nonatomic, ...
4
votes
2answers
2k views
Instance variable used while 'self' is not set to the result of
I'm working with SGAREnvioroment, and I get the following error:
Instance variable used while 'self' is not set to the result of '[(super or self) init...]'
In this piece of code:
@interface ...
4
votes
2answers
2k views
Python 'self' for function
I have read the SO post on 'self' explained, and I have read the Python documentation on classes. I think I understand the use of self in Python classes and the convention therein.
However, being ...
4
votes
2answers
743 views
When to use self in Model?
Question: when do I need to use self in my models in Rails?
I have a set method in one of my models.
class SomeData < ActiveRecord::Base
def set_active_flag(val)
self.active_flag = val
...
4
votes
4answers
379 views
When to access property with self and when not to?
Can anyone explain the difference between setting someObject = someOtherObject; and self.someObject = someOtherObject; if someObject is a class property created with @property (nonatomic, retain) ...
4
votes
1answer
666 views
Using self in Django Model classes
While adding model class to models.py in Django, why don't we use self with the field variables which we define? Shouldn't not using self field variables make them class variables instead,which "may" ...
4
votes
2answers
951 views
Descendent or self selector in jQuery
I want to search for all elements with class needle in all elements returned by jQuery('.haystack') and have tried jQuery('.haystack .needle'), but this doesn't seem to pick up the case where an ...
