Top "Self" questions

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

In Go is naming the receiver variable 'self' misleading or good practice?

I have seen a fair amount of blogs & videos on Go and as far as I recall, none of …

go self
iOS: Usage of self and underscore(_) with variable

Possible Duplicate: How does an underscore in front of a variable in a cocoa objective-c class work? I have been …

ios objective-c memory-management self
What does self do?

Possible Duplicate: Python 'self' keyword Forgive me if this is an incredibly noobish question, but I never did understand self …

python self args
When to use self in module's methods

My module definition looks like this: module RG::Stats def self.sum(a, args = {}) a.inject(0){ |accum, i| accum + i } …

ruby self
PHP - self, static or $this in callback function

Is it possible to access classes/objects reffered as self, static and $this in anonymous callbacks in PHP? Just like …

php static callback anonymous-function self
Binding to a RelativeSource Self in Silverlight

I am trying to bind a value of a slider control to a property that is in the same control: &…

silverlight binding self relativesource
PHP detect if page is reloaded with PHP_SELF

I have a form that reloads the page with the updated data: <form name="form" method="post" action="<?…

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

When do you use self.property_name in Ruby?

ruby self
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) …

python class arguments self
window.open('url', '_self') not working

So i wanted to open a new page replacing the current one, i found that the method should be putting …

javascript html self window.open current-page