A keyword used in instance methods to refer to the object on which they are working.
3
votes
2answers
36 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
31 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;
...
-1
votes
0answers
22 views
Ruby change self parameters for 2D array
I have a class that enables to do that :
$my_array_class[0] = 3
Codes :
def [](id)
@data[id]
end
def []=(id, value)
@data[id] = value
end
So how can I do that for 2D arrays like:
...
0
votes
1answer
39 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
39 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
0answers
51 views
PYTHON: I cannont figure out OOP. here is my best attempt at my assignment [closed]
THIS IS MY TERRIBLE ATTEMPT PLEASE TELL ME WHAT IS WRONG WITH IT
class Purchase(object):
def __init__(self, quantity, size, cost, total):
self.quantity = quantity
self.size = ...
-2
votes
1answer
35 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
77 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
173 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
48 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
31 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
65 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
55 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
3answers
54 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
106 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
46 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
42 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
53 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
23 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
62 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
94 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
52 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
155 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
49 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
21 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
61 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
28 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
86 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
47 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
81 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
85 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
13 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
85 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
88 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
69 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
166 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
83 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
107 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
31 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
87 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
vote
2answers
34 views
Distinguishing between when a script is ran 'directly', or with Python executable
How can a Python program determine if it was executed as an executable file on a Unix system instead of being called as a script?
./program.py
instead of
python ./program.py
'/program' in ...
0
votes
1answer
51 views
Hibernate joining 2 rows
In order to make my java code easier, I would like to join two rows into one since I really need those two to be present in order to use the data.
Let's say those are the fields of my table :
ID, ...
0
votes
1answer
57 views
self.finish() error in Tornado
I have a problem.
I have this part of code:
if command in ['ON', 'OFF', 'TOGGLE']:
ret['success'] = "The %s command has been succesfully sent!" % (command.upper())
...
0
votes
1answer
239 views
JavaScript window.open _self issues
I have some old code that I want to open into the same window
if(sgame=='BIN') {
...
5
votes
2answers
190 views
Javascript: Self and This
Can anyone explain why do I get different values of self and this? Where self is a reference to this.
function Parent(){
var self = this;
this.func = function(){
// self.a is undefined
...
0
votes
1answer
52 views
Importing a class from a module in python 2, causes an unknown “self”
I have 2 python files. One which declares a class called language:
class language:
def __init__(self, name, letters, elements, grammar):
self.n = name
self.l = letters
...
0
votes
1answer
40 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,
...
-11
votes
1answer
90 views
What is the difference between these four infinite loop [closed]
1
def f():
print 1
f()
2
def g1():
print 1
g2()
def g2():
print 1
g1()
3
def h():
print 1
return h()
4
def i1():
print 1
return i2()
def i2():
print 1
...
0
votes
1answer
74 views
Decorators, lambdas and member function calls in Python?
What's the correct syntax?
Programming attempt
class Foo:
def hello(self):
print "Hello cruel world!"
def greet_first(self, f):
self.hello()
return lambda *args, ...
-1
votes
3answers
129 views
Any ideas about how to get rid of self? [closed]
Is there anyway of making Python methods have access to the class fields/methods without using the self parameter?
It's really annoying having to write self. self. self. self. The code gets so ugly ...


