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

learn more… | top users | synonyms

0
votes
3answers
181 views

c++ passing self to self mistery

could you please help me. I am passing self to a pure virtual function of itself. n->dataCallback(handler, n, hangup); where n is my class pointer and dataCallback is its own (pure) virtual ...
0
votes
5answers
320 views

use of self argument

I am a newcomer to Python. I don't understand how/why the self argument is used: class Person: def __init__(self, name): self.name = name def sayHi(self): print 'Hello, my ...
1
vote
3answers
95 views

Is my understanding of 'self' correct?

I'll provide a simple method and then explain how I see it, if this is incorrect, please let me know and correct me. I feel like I understand 'self' but still doubt my self. -(NSString *)giveBack { ...
-2
votes
2answers
136 views

Python using self as an argument [closed]

I have two classes, one which handles the GUI = GUI(), and one that handles the Client connection to my server = Client(). So, my error report would be: TypeError: change_state() takes exactly 2 ...
0
votes
1answer
1k views

Python leave() takes exactly 1 argument (0 given)

Ok so my problem is that when calling a method inside of my class from outside(top level), it takes the self parameter as if it would be an argument that it wants a value for, my class: class Client: ...
0
votes
5answers
522 views

Objective-C: _variable

OK, this must have been asked before but I looked like mad and found nothing: I have a simple array in my iphone app which I define like so: @property (nonatomic, strong) NSArray *pages; @synthesize ...
4
votes
2answers
806 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, ...
1
vote
1answer
296 views

Will self retain within block?

Before/After call the block, the retaincount is always 1. From apple block doc we know that the self should retain. Can anyone know why? NSLog(@"Before block retain count: %d", [self retainCount]); ...
2
votes
1answer
388 views

Erlang process monitoring itself

I am trying to create a process in Erlang that can monitor itself and restart of it exits. So far I've had no luck at all, so don't have any code to show. Is this even possible in Erlang, and if so ...
-1
votes
1answer
256 views

Objective-C call a method from another UIViewController, what self refers to?

I have 2 UIViewControllers in a UITabBar and would like to create a facade for one of my UIViewControllers, and am running into issues when trying to do this: //within the 2nd view controller, that ...
2
votes
3answers
186 views

self in python decorators

I want a decorator that would add the decorated function to list, like this : class My_Class(object): def __init__(self): self.list=[] @decorator def my_function(self) ...
1
vote
4answers
116 views

should I always use self.classvariable?

When coding my iPhone app. Is it always a good practice when setting or getting values to use self? I seem to forget half of the time and recently have been tracking down a bug I believe is related to ...
4
votes
2answers
2k views

Instance variable used while 'self' is not set to the result of

I'm working with SGAREnvioroment, and I get the following error: Instance variable used while 'self' is not set to the result of '[(super or self) init...]' In this piece of code: @interface ...
0
votes
2answers
138 views

PHP IP request gives error

Hey, PHP newbie here when I try to run this to get an IP it give me Fatal error: Cannot access self:: when no class scope is active in /home/content/56/6442856/html/unlocking/Untitled-4.php on line ...
1
vote
4answers
89 views

attributes in python class

I have problem updating attributes in a python class, I give a small example. #!/usr/bin/python # -*- coding: utf-8 -*- class myClass(): def __init__(self): self.s=0 ...
0
votes
1answer
2k views

Perform segue from delegate methode

I have a problem which should be easy to solve, but I won't get it. I have a segmented control if clicked a user will be forced to enter a password. After successfull check the modal screen should ...
3
votes
1answer
98 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 ...
0
votes
1answer
186 views

subclassing views, handling self iPhone

I'm getting a build error in the following: [self presentModalViewController:tweetViewController animated:YES]; [self dismissModalViewControllerAnimated:YES]; because self isn't applicable in the ...
0
votes
1answer
89 views

self pointed model in django

class Person(models.Model): name=models.CharField(max_length=30) .... followers=models.ManyToManyField(Person,blank=True, null=True) above is wrong because Person model could not be recognized. I ...
0
votes
3answers
687 views

Ruby On Rails self saving in model

I have a function in my model that changes is as follows: def compare self.dirty = 1 if self.dirty == 0 compare_recursive(0, MergeDigestTree.all) self.dirty = 0; end Do ...
1
vote
2answers
1k views

Python: “Self” is not not defined?

Back with the same confusing script.. there was A LOT of spacing issues that I fixed... but seem to be missing more? Whats wrong with this -- its saying line 332 self is not defined... Here are a ...
0
votes
1answer
565 views

ios5 Xcode 4.2 scrollview self return error

I made ​​a cartoon applications. In ios4.3 perfectly well, but should not run ios5. The error message "Terminating app due to uncaught exception 'NSGenericException', reason: 'The view returned from ...
0
votes
3answers
77 views

Self in Class Demanding Argument

For some reason most instances of classes are returning Type errors saying that insufficient arguments were passed, the problem is with self. This works fine: class ExampleClass: def ...
0
votes
1answer
169 views

Value of self changes after pushViewController

I'm using a UINavigationController and I want to reuse a UITableView. To that end, I've made the data sources for the table properties. Here are the files for the view. WordList.h: @interface ...
2
votes
1answer
123 views

Server rejects request on self hosted service

I have created a self hosted service with a proxy Service and Contracts Namespace ECDBDatabase.Service Public Class DatabaseService <ServiceContract(Name:="DatabaseService", ...
3
votes
4answers
353 views

When do you use 'self' in Python?

Are you supposed to use self when referencing a member function in Python (within the same module)? More generally, I was wondering when it is required to use self, not just for methods but for ...
0
votes
2answers
365 views

setDelegate:self and retainCount

i have a UIView [self] with 2 custome UIViews [articalBottomPanel] [movingSharePanel] every custome view is declared in a single class first view [articalBottomPanel] delegate's will be set to ...
1
vote
2answers
164 views

How do you resolve ambiguous aliases in MySQL to the current table's definitions

I was wondering if MySQL has some kind of default alias for the current table you are building (like 'self' in SmallTalk or 'this' in Java). For instance: SELECT SUM(revenue) AS revenue, SUM(units) ...
1
vote
2answers
121 views

Ruby: Reference materials to learn more about assigning values to self

I haven't been able to find documentation or any reference material on this topic: Ruby: How to write a bang method, like map? Anyone know of anything I can read to learn more about this specific ...
1
vote
2answers
886 views

Ruby: How to write a bang method, like map?

I'd like to write some new Array methods that alter the calling object, like so: a = [1,2,3,4] a.map!{|e| e+1} a = [2,3,4,5] ...but I'm blanking on how to do this. I think I need a new brain. So, ...
0
votes
2answers
86 views

Which class owns methods and attributes

Let's say we have this code: class C(CC): a = 1 b = 2 def __init__(self): self.x = None self.y = 1 How can I quickly find out in Python where is the attribute or method defined? If it ...
6
votes
2answers
3k views

Python - self, no self and cls

Yet another question on what the 'self' is for, what happens if you don't use 'self' and what's 'cls' for. I "have done my homework", I just want to make sure I got it all. self - To access an ...
2
votes
1answer
528 views

“Invalid use of 'this' in non-member function” in objective-c context?

Using Xcode. In this code (func is declared in interface), tells subj error, standing on string with 'self'. + (void) run: (Action) action after: (int) seconds { [self run:action after:seconds ...
2
votes
2answers
166 views

objective-c referencing self

I was reading Apples documentation, The Objective-C Programming Language, on pg 18 under The Receiver’s Instance Variables I saw this. A method has automatic access to the receiving object’s ...
2
votes
3answers
90 views

Python: how can I import the namespace of some object to current namespace?

I have a Python class, which contains several nested parameter groups: class MyClass(object): #some code to set parameters def some_function(self): print ...
2
votes
5answers
111 views

How to get the name of an object in Ruby?

I want to write a simple debug method in Ruby for my Rails app: foo = "bar" debug(foo) The debug method would return the string "foo: bar". How do you get the name of the object (foo, in this ...
0
votes
0answers
144 views

Objective-C: The concept of 'self' [duplicate]

Possible Duplicate: When to use self on class properties? Can someone tell me when to use the self. prefix and when it is unnecessary? I have a UINavigationController set up in ...
3
votes
4answers
547 views

When to use `self` in Objective-C?

It's now more than 5 months that I'm in Objective-C, I've also got my first app published in the App Store, but I still have a doubt about a core functionality of the language. When am I supposed to ...
1
vote
2answers
120 views

How to write a demo page that will provide the code of itself?

Suppose you've made a demo(a webpage) of your product, you want to make a page to display the demo, and in the bottom of the page, there is a button by click which you can display the source code of ...
0
votes
3answers
155 views

referring to self from within self in python

I am not even sure whether the title of my question is correct, but I will fire away anyway. But I would like to apologise, if it turns out that the title is not entirely correct. Also, I have to ...
0
votes
1answer
47 views

How to copy a function so that i can use “this” in an onLoad function. AKA this.onload?

When an object loads, I want it to move across the page. The movement is not the hard part. I am using this code (more or less) for that. var x = 5; //Starting Location - left var y = 5; //Starting ...
0
votes
1answer
35 views

Using self to get variables within a class?

This is probably a silly question, but if i have a variable called, say nstate, defined with appropriate getters and setters within a class, and I would like to get its value from within the class, is ...
0
votes
6answers
131 views

Self with an array and addObject

When inserting an object into an array with a property is there any reason to invoke the getter/setter with self? i.e. [self.myArray insertObject: myObject]; Or can I just use: [myArray ...
2
votes
2answers
173 views

In PHP classes, what is the equivalent of self from python classes?

In PHP, how can I achieve something like this from Python ?: class CrowdProcess(): def __init__(self,variable): self.variable = variable def otherfunc(self): print ...
3
votes
2answers
224 views

“Pure” Prototype Language

I'm looking for a "pure" prototype language that I can study. I'm using the definition of "pure" meaning (quoted from Wikipedia): Under pure prototyping, which is also referred to as ...
0
votes
2answers
736 views

NameError: name 'self' is not defined when passing attribute as parameter to method

I am having some issues with a small program I have made that edits Pdfs using pyPdf. I am attempting to pass the last page of the pdf (self.lastpage) as a default parameter to a class method ...
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 ...
1
vote
5answers
4k views

python global name 'self' is not defined

Just started learning python and I am sure its a stupid question but I am trying something like this: def setavalue(self): self.myname = "harry" def printaname(): print ...
3
votes
2answers
676 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. ...
0
votes
0answers
220 views

WCF service in self hosting on window application running on remote machine not respond when no one is logged in

Hi I have developed one WCF service which is hosted on the window application. This application is running on the virtual machine.If none is logged in on machine for long time that service stop ...

1 4 5 6 7 8