A keyword used in instance methods to refer to the object on which they are working.

learn more… | top users | synonyms

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 ...
2
votes
3answers
495 views

When to access properties with 'self'

I have read a number of questions on this site about this issue, I understand the following: self.property accesses the getter/setter method created manually or by @synthesize. Depending upon whether ...
2
votes
2answers
4k views

self.delegate = self; what's wrong in doing that?

self.delegate = self; what's wrong in doing that? and what is the correct way of doing it? Thanks, Nir. Code: ...
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
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 ...
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: ...
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 ...
5
votes
5answers
897 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. ...
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: ...
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 ...
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 ...
0
votes
5answers
531 views

Objective-C: _variable

OK, this must have been asked before but I looked like mad and found nothing: I have a simple array in my iphone app which I define like so: @property (nonatomic, strong) NSArray *pages; @synthesize ...
2
votes
1answer
538 views

“Invalid use of 'this' in non-member function” in objective-c context?

Using Xcode. In this code (func is declared in interface), tells subj error, standing on string with 'self'. + (void) run: (Action) action after: (int) seconds { [self run:action after:seconds ...
20
votes
2answers
9k views

What is the 'cls' variable used in python classes?

Why is 'cls' used instead of 'self'? Any help appreciated
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) ...
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 < ...
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)" ...
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 ...
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 ...
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 ...
3
votes
2answers
687 views

Can a JavaScript function return itself?

Can I write a function that returns iteself? I was reading some description on closures - see Example 6 - where a function was returning a function, so you could call func()(); as valid JavaScript. ...
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 ...
3
votes
5answers
2k 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() ... ...
2
votes
5answers
797 views

(self,left outer,right outer,full outer) join - real world examples [closed]

can you tell me simple real-world examples for (self,left outer,right outer,full outer) join?
1
vote
2answers
2k views

Self Signed Applet Can it access Local File Systems

Hi I have created a Self Signed Applet , but not able to access local files system .What have i to do ?
1
vote
5answers
395 views

what is self? when should i use it?

can you explain me the self in the objective-C 2.0 ? when and where should i use? is it similar with this definition in java?
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 ...
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 ...
4
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
419 views

In Ruby, when should you use self. in your classes?

When do you use self.property_name in Ruby?
3
votes
2answers
2k views

Delphi Self-Pointer usage

I need to get pointer to my class instance inside this instance. I can't use "Self" directly, I need store pointer for future usage. I tried next code: type TTest = class(TObject) public ...
1
vote
4answers
2k views

iOS First Application “self.userName = textField.text” question. When to use self

Here is a code snippet from Apple's "Your First iOS Application" document. - (IBAction)changeGreeting:(id)sender { self.userName = textField.text; NSString *nameString = self.userName; if ...
6
votes
3answers
937 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 ...
4
votes
2answers
737 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 ...
3
votes
4answers
560 views

When to use `self` in Objective-C?

It's now more than 5 months that I'm in Objective-C, I've also got my first app published in the App Store, but I still have a doubt about a core functionality of the language. When am I supposed to ...
3
votes
3answers
4k views

Java “self” (static) reference

I am looking for a "self" reference to the current class in JAVA in a static context manner like in PHP Scope Resolution Operator? Solution: Break out of scope? BEWARE, this is compared to a static ...
3
votes
3answers
333 views

Confused when I see 'self' and '__init__'

I don't understand what these are used for, particularly the self argument? Could some please explain this to me and why on earth you would want to pass this in? Also, I've always thought __init__ ...
1
vote
2answers
899 views

Ruby: How to write a bang method, like map?

I'd like to write some new Array methods that alter the calling object, like so: a = [1,2,3,4] a.map!{|e| e+1} a = [2,3,4,5] ...but I'm blanking on how to do this. I think I need a new brain. So, ...
0
votes
0answers
57 views

How to refactoring a 'self' declaration depending on the current context?

I am using jQuery v1.8.3 and jQuery UI v1.9.2. After my previous question, I ended up with the following working code: $('#input_id').autocomplete({ create: function (event, ui) { // Initialize ...
2
votes
3answers
369 views

Why does Array#each return an array with the same elements?

I'm learning the details of how each works in ruby, and I tried out the following line of code: p [1,2,3,4,5].each { |element| el } And the result is an array of [1,2,3,4,5] But I don't think I ...
1
vote
1answer
206 views

What is the value of self in a Rails model and why aren't obvious instance methods available?

I have a custom accessor method in my rails 3.1.6 app that assigns a value to an attribute, even if the value is not present.The my_attr attribute is a serialized Hash which should be merged with the ...
1
vote
2answers
146 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 = ...
1
vote
2answers
997 views

Objective-C: self = nil doesn't set instance to null value

I've got the next code, pretty simple: //SecondViewController.m if(contentRvController==nil){ contentRvController = [[ContentView alloc] initWithNibName:@"ContentView" bundle:nil]; ...
1
vote
4answers
4k views

Problem accessing self hosted WCF service from Silverlight 4

I have a self hosted WCF 4 service, catering the same contract via basicHttpBinding for Silverlight 4 clients and wsHttpBinding for the others. The code is very short and simple and provided here. I ...
0
votes
3answers
49 views

php self() with current object's constructor

What's the proper way to get new self() to use the current instance's constructor? In other words, when I do: class Foo{ function create(){ return new self(); } } Class Bar extends Foo{ } ...
0
votes
1answer
52 views

Referencing `self` in `__old__` in PyContract constraints

I'm working on writing some constraints for a class method using PyContract (not PyContracts). As a postcondition, I'd like to ensure that the memory address of the instance hasn't changed i.e. ...
0
votes
1answer
201 views

mysql SUM CASE self join

i need some help with this query this is the actual result of my query price received qty recieved price release qty release 10.30 10 0 0 ...
0
votes
3answers
182 views

Video, flash or… videos for HTML [closed]

I'm not new to HTML, CSS, JS or PHP, I already made diff. web pages, but every time when I included a video from YouTube or from another external site, I always used iframe, or embed code. So, today I ...
0
votes
4answers
2k views

PHP Form - Undefined constant ’PHP_SELF’

I have a contact form, it works fine when hosted on my server, but when I uploaded it to my clients server I ran into problems. Please check out the page here: http://www.conceptonegfx.com/contact.php ...
0
votes
1answer
600 views

Silverlight WCF Self Hosting seemed not to locate ClientAccessPolicy.xml

I've created WCF self hosting service in local machine and silverlight App gets data from this service and send it to remote server. It worked well for more than a month but suddenly stopped ...

1 2