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

learn more… | top users | synonyms

-2
votes
0answers
12 views

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

@class MyControll; @protocol MyControllDelegate <NSObject> -(void)CloseSelf:(MyControll*)me; @end @interface MyControll :NSObject<NSWindowDelegate> { NSWindow *_MyStructureWindow; ...
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 ...
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 ...
-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
75 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
154 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
59 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; ...
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 ...
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
188 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 ...
1
vote
2answers
59 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 ...
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
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, ...
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, ...
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
125 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 ...
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
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
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
80 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
4answers
215 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
56 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
91 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 ...
1
vote
2answers
52 views

How to implement mySQL self-relationship?

How can I create a Message table such as this in mySQL where it stores messages and their responses?
1
vote
3answers
100 views

php: how to pass self as parameter, and handle it once received

How to pass self to a global function class A { public static $A_var = "hello" ; private static function A_function() { some_global_function( self ) ; } } And then receive it: ...
0
votes
1answer
104 views

passing self to another classes function in self's function

I have two classes, the first one has a function move(creature, board). Then in the creature class there is a function that calls move, so how do I pass the current creature to the move function while ...
0
votes
0answers
17 views

Joining with an incomplete dataset

I have a table that looks like this after sorting: col1 col2 2 3 1 3 1 4 2 6 3 5 And I want to filter each observation as follows: within the observations outputted so far, if the ...
0
votes
3answers
87 views

What will be the best way to replace self [closed]

I have this code that works great, but out of curiosity how can I replace the word self in this method?This is a navigation app btw, and been trying all sorts of methods to replace it. ...
0
votes
1answer
92 views

Why does Python interpret this variable as a int if I initialize it as a string?

While working on a school project. I ran into this error >>> y = tokens.numberToken('1.23') Traceback (most recent call last): File "<stdin>", line 1, in <module> File ...
0
votes
3answers
78 views

Objective-C: Self-variable understanding Issues

I want to know some features about self. Which context have self variable in class method? Why self.self allowed in init method? First: We have a class ExampleClass @interface ...
5
votes
3answers
171 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: ...
1
vote
4answers
98 views

Ruby self keyword

im having trouble understanding the self keyword . I get how it's used to distinguish between Instance Methods and Class Methods but what about when it's used from inside a method. Something like ...
2
votes
5answers
134 views

self IBAction and sender

I am a newbie iOS programmer, here is my question: I have mapview and segmented control, also changeMapType function which get called when UIControlEventValueChanged occures, like this // change map ...
-8
votes
1answer
32 views

security Dead-man file, [closed]

I want a (file, app, other) that will be able to be opened and looked at but only with a password. When (file, app, other) is opened it will check to make sure it has an Internet connection, and can ...
0
votes
1answer
102 views

Self Installing Zip Archives ( run app after extracting )

I'm creating an self extracting archive using unzipsfx.exe and with command: cat unzipsfx.exe archive.zip > Installer.exe I need to execute an exe from archive.zip after Installer.exe extracts ...

1 2 3 4 5 9