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

learn more… | top users | synonyms

-2
votes
0answers
7 views

how can object call a method of owner to skill self [closed]

I have two NSwindows control by a objectA. and this objectA is a member of NSMutableArray. I want do this: when user click close button, tell a NSMutableArray to remove it. how do I do?
0
votes
1answer
15 views

How getting ManyToManyField(“self”) in the template?

I don't figure out how getting the value of sequels in the template. here models.py class Anno( models.Model ): anno = models.CharField( max_length=4 ) def __unicode__(self): return ...
0
votes
0answers
6 views

I'm trying to add an image to my class but it makes me add root = Tk() first Why and how do I fix it?

I'm trying to add an image to the class StartPage but it will not allow me too. I looked on the internet and found out in order to import the image I must add root = Tk() but when that happends two ...
0
votes
0answers
5 views

Can't add image to class I've tried through Label to import path and open file multiple times but no progress

This is an extremely hard issue I'm having, Have Fun! but seriously I've been programming through python for only half a year now, and I don't know much about classes or definitions which are really ...
0
votes
2answers
47 views

Why in Obj-c is not possible to leave self to reference the current Class?

Why in Obj-c is not possible to leave self to reference the current Class? is there some special reason why you can't do that? or is possible to do that somehow anyway? I'm trying to understand the ...
0
votes
1answer
33 views

<?php echo htmlentities($_SERVER['PHP_SELF']); ?> Returns index.php in form

I believe I've found the issue with my form using Firebug. Upon closer inspection my form action was being set to index.php when someone is on the homepage. I changed this to a simple / within firebug ...
3
votes
4answers
514 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 ...
19
votes
7answers
3k views

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 ...
1
vote
1answer
30 views

Get Variable Name of Component

I am creating a listener application that attaches to my app and prints to the console, Variable: "name" when the user taps on a certain component, such as Variable: button if the user taps on a ...
0
votes
1answer
46 views

Python Dictionary Not Returning New Value Like I Wanted

So clearly Im doing something wrong. Im a new python/noob coder so it may be obvious for many of you but Im not sure what to do. class hero(): """Lets do some heros shit""" def ...
1
vote
4answers
2k views

iOS First Application “self.userName = textField.text”. 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 ...
-5
votes
0answers
44 views

How do you add functions to a class python [closed]

The following code is something I have come up with to satisfy a question I have been asked to answer. The only problem is that currently is is just a bunch of definitions and I need to add it all to ...
0
votes
0answers
71 views

Phonegap 2.7.0, executeScript, target: “_self” not working

I'm trying to use the new PhoneGap (version 2.7.0) function "executeScript" to insert som JavaScript-code to the page I'm loading to the child browser using the function "window.open". - I do not want ...
1
vote
1answer
62 views

Python assigning two variables on one line

class Domin(): def __init__(self , a, b) : self.a=a , self.b=b def where(self): print 'face : ' , self.a , "face : " ,self.b def value(self): print self.a + ...
0
votes
2answers
150 views

Required positional argument: self

I'm new to Python, and I need some help. I was writing a blackjack program as homework, and I think I may have it working, but whenever I run it, it complains that I have not provided anything for ...
3
votes
2answers
58 views

Self pointer, using with C++ from Objective C

I am having a slight confusion with the self pointer. I understand that if I want to use self in objective C, I need to pass it as a parameter e.g. someFunction(id self) { } What I'm slightly ...
2
votes
1answer
34 views

Is this a valid way to assign properties to an object?

Is this a valid way to assign properties to an object? I have an if/ else statement and I want it to determine what the properties of p and i are. function game(){ var self = this; ...
2
votes
2answers
2k 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 ...
0
votes
1answer
43 views

Ruby tracking self inside Array#each

I'm having a little trouble tracking self in the following example: # a simple class class Foo; end # open the Class class to add an instance method class Class # breakpoint 1 - self is equal to ...
-1
votes
2answers
71 views

Understanding Classes and Methods in Python 3

Alright, after viewing a lot of tutorial videos about classes i'm still having trouble understanding them for this assignment i have to do. I need to write a program that essentially does high card, ...
0
votes
1answer
41 views

Execution Order In a Method with Rails

I have a question regarding the execution order in a Rails method : Here what I do in my model : def update_fields FillMethods.fill_info("BadgeUser", "Badge", self.id, self.badge_id, "badge_") ...
-2
votes
1answer
41 views

Can't reference current div

I am having a little problem with "this"...I wanna make the start() works for every div. But like that is returning HTML div obj, you know... function init(){ box = []; box = ...
0
votes
3answers
86 views

'self' seems to be hogging one of my arguments

I am trying to learn object orientated programming in python 3. I am making a variation of a notebook program that I have in a book but instead of adding notes to a notebook I am trying to add days to ...
7
votes
1answer
187 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 ...
0
votes
2answers
298 views

Defining a class in python in python

class Rectangle(object): def __init__(self, (top left corner), width, height): """ __init__(self, (x, y), integer, integer) """ self._x = x self._y = y self._width = width ...
1
vote
2answers
58 views

Why prefix a method with “self”

I'm doing the following Ruby Tutorial http://rubymonk.com/learning/books/4-ruby-primer-ascent/chapters/48-advanced-modules/lessons/118-wrapping-up-modules One of the exercises asks me, "...define a ...
119
votes
9answers
64k 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 ...
0
votes
1answer
51 views

Rails: Get the Class Name of a Child Class in a Parent Class Method

I have a STI table (Vote) with many children (Tag::Vote, User::Vote, Group::Vote, etc). All the children classes share a very similar method that looks like this: def self.cast_vote(params) value = ...
1
vote
0answers
68 views

Using class methods … fails with the old “__init__() takes exactly x arguments (x+1 given)”

Here's some code I wrote with the purpose in mind of having more than one way to initialize my GameObject class: class GameObject(object): def __init__(self, name, location, description, ...
0
votes
2answers
78 views

Doctrine 2 - not able to save one to many self-reference relationship

I have a problem saving a one to many self-reference relationship, both parent and children are saved properly on the database, but Im getting parent_id null for the children. I folloed the doctrine ...
1
vote
3answers
55 views

“self”-variable for easy referencing in R?

I want to show only parts of an array, that has a long variable name. So far I used: # Data k0100_m020_r05_h10000__aea000_aee0$cumsumData = c(-1:10) # show only parts ...
0
votes
2answers
124 views

Returning 'self' while it is not set to the result of '[(super or self) init…]' in my custom alloc method

I init my custom view with my custom method : 1) In My View Controller I am calling custom view and pass this array to my custom class that is of type UIView NSArray *array = [[NSBundle mainBundle] ...
0
votes
3answers
55 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{ } ...
1
vote
1answer
44 views

Referencing self while overloading class methods

Forgive me if 'overloading' is not the correct term here... I am trying to do something like this: class Length: def __init__(self, length = 0): self._length = length def ...
7
votes
2answers
813 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 ...
0
votes
0answers
35 views

How to jump to self page based on confirmation box answer

I want to execute an SQL on my php server based on a user confirmation prompted not by a button but by another sql result. So I tried to do something like this: if ($result == 1) { ?> ...
0
votes
2answers
64 views

Php detect file name load from url

I want to detect the name of a file when loading my url, for example this: http://www.test.com/image/read_my_file.php I want to know the name of the file loaded using PHP, in this case it´s ...
0
votes
2answers
217 views

Delphi - Maintaining Self References to an Object

I've looked at many questions and resources which deal with the "Self" variable in an Object, but everyone says something different. For example, in this question: Delphi Self-Pointer usage the ...
9
votes
2answers
9k 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 ...
0
votes
1answer
73 views

TypeError : clean_country() takes exactly 1 argument (0 given)

class FilterForm(forms.Form): currency = forms.ChoiceField(choices=Currency_choices) continent = forms.ChoiceField(choices=Select_continent()) def clean_country(self): continent ...
0
votes
2answers
107 views

How to add arguments next to 'self' in a python function?

I'm trying to fix up a little program, but looks like I'm in a bit over my head. The whole code is too long to copy here, so I'm just gonna paste the problematic part. def kontroll(self): ...
0
votes
2answers
31 views

Scaffolding - rails generate - data migrate def in class

I'm new to Rails - I started a new rails app rails new test, then rails generate scaffold Name column1:datatype column2:datatype In the tutorial once I open the 12345678timestamp_create_names.rb file ...
0
votes
1answer
129 views

wordpress self hosted plugin

I am in the process of creating a self hosted plugin for my work. It can not be released into repository as it is specific to what we do. We would like to however be able to do updates from our own ...
1
vote
4answers
213 views

PHP condition, if current page, then link is highlighted [closed]

I have a webpage with a side bar that uses some css class. If the class = "active', then the link will be highlighted. I want to make it so that at any page, the script would check which link it's ...
0
votes
1answer
55 views

Overwirting an instance (overwrite/copy self) in python [duplicate]

In the line after elif I assign the argument text to self. A vain attempt to overwrite/copy the current instance. class Someclass(object): def __init__(self, text): if type(text) == ...
0
votes
1answer
23 views

mootools self reference

how can i handle a self-reference in mootools? After i made the next container visible, i would remove the clicked "remove" Button. With Jquery i can do it throug the "this" operator. ...
0
votes
0answers
90 views

Calling a windowsservice ExecuteCommand to excute a OnCustomCommand on itself?

ServiceController.ExecuteCommand in C# can be used to send custom command to a windows service. Like here - How to send a custom command to a .Net windows Service from.Net code? ServiceController ...
1
vote
2answers
29 views

What's the difference between #<MyClass:0x10f6a82d0> and MyClass?

class MyClass def fun puts self end def self.fun2 puts self end end mine = MyClass.new mine.fun MyClass.fun2 The above code should print self twice, in which case they are both ...
2
votes
2answers
90 views

What changes `self` in Ruby? [duplicate]

I got completely lost about the self keyword. How does it change when we enter into a module, class, method, block, or everything else? Can anyone give me a summary? Here I'm asking how does self ...
0
votes
1answer
43 views

Closing a Tornado handler

I have a doubt. I have this part of code: #Code for retrieving the MAC address of the node como_url = "".join(['http://', options.como_address, ':', options.como_port, ...

1 2 3 4 5 9