A keyword used in instance methods to refer to the object on which they are working.
2
votes
3answers
84 views
manipulating instance itself by its instance methods
I wonder if there is something similar to,
say:
>>> class A(object):
... def swap(self):
... self = 'I am swapped'
...
>>> abc=A()
>>> abc
<__main__.A ...
0
votes
1answer
105 views
self variables not being stored in python?
I'm declaring self variables in my program regularly:
def __init__(self):
self.x = dict()
And later on in my code (the first function that is called), I assigned a value to self.x.
However ...
0
votes
1answer
834 views
addObserver on self
A pretty simple question, but I can't seem to find an answer. (Developing an iOS 5+ app).
In my AppDelegate, I have a property, let's call it @property (non atomic) BOOL aFlag;. I'd like my ...
0
votes
1answer
224 views
IOS 6 Update code error switching views
im designing a app thats a single view application and i am adding the code so that i can switch views via a button but every-time i enter my code that was working in IOS 5 it now comes up with a ...
0
votes
1answer
39 views
On the Self Language, how do we run code on its VM?
If Self is installed on Ubuntu using the file on http://selflanguage.org/, then we can use
$ Self
Self Virtual Machine Version 4.1.13, Sat 20 Feb 10 22:39:48 Linux
Copyright 1989-2003: The Self Group ...
1
vote
3answers
91 views
sql oracle duplicates
Here's my ORACLE table
HAVE******
asset_no, sub, add_dtm
11510 FOX HOLLOW 8/1/2008 8:00:01 AM
11510 FOX HOLLOW 11/1/2011 1:30:01 PM
11510 FOX HOLLOW 10/1/2012 8:00:01 AM
...
1
vote
2answers
79 views
What difference has adding the self keyword made?
When I started learning Ruby, I started with Michael Hartl's excellent Rails Tutorial. I just revisited the tutorial and noticed that portions of the example application code were modified. In the ...
0
votes
0answers
75 views
“ConfigFileMissing” error when silverlight client register for duplex channel on self hosted WCF service
I am getting CofigFileMissing error when my silverlight client requests a duplex channel on a self hosted WCF service. Silverlight client has clientaccesspolicy.xml at its root, and client endpoint is ...
1
vote
4answers
92 views
Getting different results when calling the same (self written) method
First off, sorry the tittle is super descriptive, but I honestly couldn't come up with a way to explain my issue in one sentence.
To explain what I'm doing: I am creating an alphabet that has a key at ...
-1
votes
1answer
92 views
Self and proc.call parameter
I know there are already a lot of questions about self, but I just wanted to make sure I've understood it.
def buttonPressed
@action.call(self)
end
In this code, self refers to @action ...
2
votes
1answer
205 views
Confusing TypeError
I have a small Python program that should react to pushing the up button by running an appropriate method. But instead of doing this, it gives me a confusing error...
from tkinter import *
class App:
...
0
votes
4answers
101 views
obj c: accessor: self vs myInstance
In Apple's The Objective-C Programming Language p. 18, they make a distinction between setting a variable with self versus instance reference. e.g
myInstance.value =10;
self.value =10;
1. Would these ...
1
vote
0answers
157 views
$_SERVER['PHP_SELF'] wrong link, double link
$_SERVER['PHP_SELF'] gives the wrong link and because of that some scripts don't work correctly
For example, I put the following code in the file test.php:
<?
echo $_SERVER[PHP_SELF];
echo ...
0
votes
6answers
187 views
Understanding “self” in Python
I saw this example from udacity.com :
def say_hi():
return 'hi!'
i = 789
class MyClass(object):
i = 5
def prepare(self):
i = 10
self.i = 123
print i
def ...
1
vote
2answers
29 views
Oddity of static:: calling a method that contains $this
In this example I get the fatal error "Fatal error: Using $this when not in object context" as expected
class ctis_parent{
public function objFunc(){
var_dump('Called succes');
}
...
0
votes
1answer
95 views
multiple self join replacement
Want some replacement for multiple self join on a table. what is the maximum limit of self join on a table in SQL
I have a table table_1 with columns as:
uid number(10),
a_name nvarchar(20),
aaId ...
1
vote
2answers
30 views
self __init__ overwrite
I'm having trouble with with an initialization of an object, and methods overwriting data that I don't want overwritten.
I apologize if my terminology is incorrect, as I use multiple coding languages ...
1
vote
3answers
932 views
iOS: Usage of self and underscore(_) with variable [duplicate]
Possible Duplicate:
How does an underscore in front of a variable in a cocoa objective-c class work?
I have been very confused with using self or underscore with variable name after ...
3
votes
4answers
468 views
Keep track of instances in python
Toward the end of a program I'm looking to load a specific variable from all the instances of a class into a dictionary.
For example:
class Foo():
__init__(self):
x = {}
foo1 = Foo()
foo2 = ...
1
vote
2answers
170 views
Difference between yield self and yield?
Could anyone please help me to understand the difference between "yield self" and "yield"?
class YieldFirstLast
attr_accessor :first, :last
def initialize(first = nil, last = nil)
...
0
votes
2answers
145 views
Class confusion in Python with the getattr
A similar question was asked here . However, the responses didn't really help me grasp how some parts of the program worked. The program is as follows:
from sys import exit
from random import randint
...
0
votes
2answers
127 views
python too many self in class
I'm learning Python OOP and trying to convert a Java class to a Python class
See page 15 in this PDF for Java code google doc link
class QuickFindUF:
"""docstring for QuickFindUF"""
...
-1
votes
1answer
78 views
IOS: When declaring properties in a .h what's the difference between self.var and just var? [duplicate]
Possible Duplicate:
Objective-C - When to use 'self'
I needed a variable to be passed from one view to another so I made a property called StringC in the .h and accessed it using ...
0
votes
1answer
201 views
mysql SUM CASE self join
i need some help with this query
this is the actual result of my query
price received qty recieved price release qty release
10.30 10 0 0 ...
2
votes
2answers
217 views
Class instantiation and 'self' in python
I know a ton has been written on this subject. I cannot, however, absorb much of it. Perhaps because I'm a complete novice teaching myself without the benefit of any training in computer science. ...
2
votes
1answer
481 views
Using Jquery $(this) in Meteor
How can I use the this function in meteor? for example, I want to be able to click on any given element and find out what its class is. Also, how can I get information on the item that I click on ...
0
votes
2answers
96 views
can't access self?
In this function I get xml through a kiss xml function called AFKissXMLRequestOperation. But since it is void, I can't access the XMLDocument unless I NSLog it, but that isn't useful when I need to ...
0
votes
1answer
123 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 ...
2
votes
5answers
394 views
New to Python: Anyone know what __init__(self) does? (simple expl. please!) [duplicate]
Possible Duplicate:
Python init and self what do they do?
Can anyone explain what __init__(self) does? I've been reading other questions and people mentioning super classes? What's a super ...
0
votes
0answers
34 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
3answers
58 views
Is it right to release the temp object after setting self?
Which of the following scenarios is correct coding practice, given that player is (nonatomic, retain), and is synthesized using player = _player.
Scenario A
MPMoviePlayerController *mp = ...
2
votes
3answers
371 views
Why does Array#each return an array with the same elements?
I'm learning the details of how each works in ruby, and I tried out the following line of code:
p [1,2,3,4,5].each { |element| el }
And the result is an array of
[1,2,3,4,5]
But I don't think I ...
0
votes
1answer
109 views
before_create still saves
Before everything i would like to thank you for your help
I have a model like this:
attr_protected nil
belongs_to :product
belongs_to :user
before_create :add_ammount
def ...
1
vote
5answers
90 views
Using self. to set but not to access causes issues
I am currently getting confused why the following works in some cases but not others. When using the following code:
NSString *currentLoc = [[NSString stringWithString:sceneName] retain];
...
0
votes
1answer
27 views
Draw rect causing errors, cant refrence myview
Here is my code. I'm trying to access the frame of my view.
First i nslog self, to make sure the view is allocated, and then i try to nslog the frame of my view, it returns null. Any ideas?
Code:
- ...
1
vote
2answers
50 views
How do I log a message when I run a method in a class?
I wrote the following code. When I run Hello.run I want to log a message, but this does not work.
Why does not this work?
class Hello
def initialize
@logger = Logger.new STDOUT
end
def ...
1
vote
3answers
154 views
What do these two 'x' mean in this Python code: self.x = x?
I'm confused in bellowing code:
class Point():
def __init__(self, x=0, y=0):
self.x = x
self.y = y
I do not understand what those two x in code self.x = x mean.
1
vote
1answer
206 views
What is the value of self in a Rails model and why aren't obvious instance methods available?
I have a custom accessor method in my rails 3.1.6 app that assigns a value to an attribute, even if the value is not present.The my_attr attribute is a serialized Hash which should be merged with the ...
0
votes
1answer
118 views
PIC16: self-modify code
On a microchip PIC16 microcontroller I have a program of the sort:
off = 2;
period = 10;
while (1) {
if (counter == 1) {
switch something on;
}elseif (counter == off) {
switch ...
0
votes
0answers
74 views
Basic Python and Java Questions [closed]
I've just finished the text "Starting out with Python" and "Starting out with Java" and I was wondering if an experience Python and Java user could suggest further reading for more intermediate to ...
0
votes
1answer
685 views
delphi E2003 undeclared identifier 'self'
I need a bit of help; I'm helping a friend port a Delphi app built years back to newer versions of Windows, as it currently only runs on Windows 95.
The code utilises 3rd party libraries from ...
0
votes
2answers
43 views
Retrieving entry values through separate definition
I'm having problems with the following code (I am a beginner in most things Python related) and am not sure how to use 'self' in this sense. I simply would like to retrieve any values given in the ...
0
votes
1answer
104 views
self classmethod in super class and then use it child class
[self classmethod] in super class and then use it child class
I'm making some iPhone game based on cocos2d.
In many games I've seen before, the scene restart when user's character die or gone.
It can ...
0
votes
1answer
176 views
self performSelector:@selector(loadData) withObject:nil - not working
I use:
self performSelector:@selector(loadData) withObject:nil...
it look like working with some command only in "loadData" but the rest are not.
Here is my viewdidload:
- (void)viewDidLoad
{
...
0
votes
1answer
105 views
Objective-C delegate or self is morphing classes
I have 2 UIViewControllers(A,B). A is set as the delegate for B and then B is presented. The protocol is set up in B's header:
@protocol BDelegate <NSObject>
- (IBAction)finishOrder:(id)sender;
...
0
votes
1answer
77 views
jquery plugin - calling methods
so I am building my first plugin for jquery I have an init method
init: function(options, elem) {
var self = this;
This calls a couple of methods
this.slide(elem);
this.lightbox(elem);
...
1
vote
2answers
105 views
Static self member in javascript [duplicate]
Possible Duplicate:
Static variables in JavaScript
How can i make a static encapsulation with self members in javascript?
such as in php:
class bar{
static public $foo;
static ...
-1
votes
1answer
95 views
Accessing instance without self
I have the following code. In the dataReceived method, I am trying to access table, but I get an error. It works if I use self and do all of that, but I don't want to use self. Using self would not ...
4
votes
2answers
739 views
When to use self in Model?
Question: when do I need to use self in my models in Rails?
I have a set method in one of my models.
class SomeData < ActiveRecord::Base
def set_active_flag(val)
self.active_flag = val
...
0
votes
1answer
322 views
using self to get current object in model, rails
i was wondering if it was possible to get the current object in a model? ie i have a
FavoriteRelationship model which
belongs_to :user
belongs_to :lesson
my lesson model is
has_many ...

