Tagged Questions
The self tag has no wiki summary.
24
votes
9answers
6k 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 cant see why it explicitly needs to be added to every function as a ...
17
votes
8answers
1k views
Why do pythonistas call the current reference “self” and not “this”?
Python is the language I know the most, and strangely I still don't know why I'm typing "self" and not "this" like in Java or PHP.
I know that Python is older than Java, but I can't figure out where ...
15
votes
6answers
6k 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:
...
15
votes
4answers
10k 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 ...
15
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 ...
13
votes
13answers
2k views
Masters Degree with Experience. Would you hire me with a postgrad degree?
I'm looking to see how detrimental a postgrad degree can be to future career options. Sorry for the long read:
I'm currently in the final year of my undergrad computer science degree. I've done one ...
12
votes
4answers
6k 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 ...
12
votes
3answers
3k 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:
...
9
votes
3answers
1k 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
...
8
votes
4answers
223 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
5answers
1k 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 ...
8
votes
3answers
956 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 ...
7
votes
2answers
2k 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:
...
7
votes
3answers
214 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
3answers
2k views
What is the 'cls' variable used in python classes?
Why is 'cls' used instead of 'self'?
Any help appreciated
6
votes
5answers
508 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 ...
6
votes
6answers
295 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
4answers
993 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)" ...
5
votes
3answers
123 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
2answers
107 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 ...
5
votes
2answers
409 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 ...
4
votes
2answers
193 views
Why did the Scala compiler get more strict regarding self types in 2.10? [closed]
I have the following code:
trait TFn1B {
type In
type Out
type Apply[T <: In] <: Out
}
trait TFn1[I, O] extends TFn1B {
type In = I
type Out = O
}
trait ...
4
votes
2answers
43 views
passing self as an argument in a helper method
I am working with a class and am trying to call a helper method from within the class. I got the following code to work, but I am unsure why I have to pass "self" as an argument to the helper ...
4
votes
1answer
602 views
clickedButtonAtIndex in appdelegate is not called
I am calling UIAlert with 2 buttons "Cancel" and "OK" in MyapplicationAppDelegate.m file , the alert is called but on tap of "Cancel" or "OK" button
-(void)alertView:(UIAlertView *)alertView ...
4
votes
3answers
323 views
Ruby's self vs. Python's self [closed]
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 ...
4
votes
1answer
309 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 < ...
4
votes
1answer
2k 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 it ...
4
votes
2answers
337 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
4answers
145 views
Ruby class question [closed]
Possible Duplicate:
class << self idiom in Ruby
I have a quick Ruby question. I come from a Java/c background, so I understand in Ruby "self" when referenced inside a instance method ...
4
votes
3answers
692 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 ...
4
votes
5answers
2k 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 ...
4
votes
3answers
1k 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 ...
4
votes
4answers
905 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 ...
4
votes
4answers
259 views
Autonomous Software
Has anyone written any code where the application in its
lifetime learn and improve itself (using observed data
stored in a KB),are there any frameworks for this?
3
votes
2answers
107 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 ...
3
votes
2answers
61 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, ...
3
votes
1answer
57 views
How do I solve an import error on 'self' not being globally defined in Python?
So I keep getting this error that when I Google for it, the most common fix for it is to be sure that all the methods of a class have 'self' as the first argument. Here is the error:
File ...
3
votes
2answers
173 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.
...
3
votes
4answers
224 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 = ...
3
votes
3answers
274 views
about_classes.rb inspect and self in ruby
I'm currently working on about_classes.rb. I'm confused on the concept of inspect and how it relates to self. Does calling an object automatically return the inspect method for that object?
class ...
3
votes
2answers
139 views
“self” in objective C [closed]
Possible Duplicate:
Should I Use self Keyword (Properties) In The Implementation?
Say I have a class "Person", with an instance variable "age". Coming from Python, when writing methods for ...
3
votes
2answers
239 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
...
3
votes
3answers
490 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
2answers
258 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 ...
3
votes
2answers
320 views
Self or not Self Objective C [closed]
I have seen some stuff out their on the use of "self" in but for me its been as clear as mud.
Why do you use self. vs not using self.
3
votes
3answers
312 views
Java self-cheking program (auto checksum)
I have to analze a little java self-check program here is the sample
public class tamper {
public static int checksum_self () throws Exception {
File file = new File ("tamper.class");
...
3
votes
4answers
348 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 ...
3
votes
5answers
206 views
Confused by self[“name”] = filename
I'm currently reading this amazing book called "Dive into Python". Up to now everything has made sense to me, but the following method has left me with some questions. Its in the chapter about ...
3
votes
2answers
274 views
Passing self into a constructor in python
I recently was working on a little python project and came to a situation where I wanted to pass self into the constructor of another object. I'm not sure why, but I had to look up whether this was ...
3
votes
2answers
807 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
...