Tagged Questions

14
votes
6answers
795 views

Advantages of prototype based OO over class based

Why is class based OO so popular instead of prototype based OO? Do they teach the latter in schools? Javascript is object based, but people use it mostly functionally, or via frameworks. I know that …
10
votes
3answers
529 views

Why is Self assignable in Delphi?

This code in a GUI application compiles and runs: procedure TForm1.Button1Click(Sender: TObject); begin Self := TForm1.Create(Owner); end; (tested with Delphi 6 and 2009) why is Self writeable …
8
votes
5answers
637 views

Why do pythonistas call the current reference “self” and not “this”?

Python is the language I know the most, and strangely I still don't know why I'm typing "self" and not "this" like in Java or PHP. I know that Python is older than Java, but I can't figure out where …
6
votes
12answers
854 views

Masters Degree with Experience. Would you hire me with a postgrad degree?

I'm looking to see how detrimental a postgrad degree can be to future career options. Sorry for the long read: I'm currently in the final year of my undergrad computer science degree. I've done one …
4
votes
4answers
205 views

Autonomous Software

Has anyone written any code where the application in its lifetime learn and improve itself (using observed data stored in a KB),are there any frameworks for this?
4
votes
3answers
343 views

What does ‘self’ refer to in a @classmethod?

I thought I was starting to get a grip on "the Python way" of programming. Methods of a class accept self as the first parameter to refer to the instance of the class whose context the method is being …
3
votes
5answers
165 views

When to call self.myObject vs just calling myObject in Objective-C

This little bit of syntax has been a bit of a confusion for me in Objective-C. When should I call self.myObject vs just calling myObject. It seems redundant however they are not interchangeable. …
2
votes
3answers
170 views

Confused when I see ‘self’ and ‘__init__’

I don't understand what these are used for, particularly the self argument? Could some please explain this to me and why on earth you would want to pass this in? Also, I've always thought __init__ …
2
votes
6answers
263 views

Assigning to self in Objective-C

I'm from the C++ world so the notion of assigning this makes me shudder: this = new Object; // Gah! But in Objective-C there is a similar keyword, self, for which this is perfectly acceptable: …
2
votes
5answers
262 views

How to call an Objective-C Method from a C Method?

I have an Obj-C object with a bunch of methods inside of it. Sometimes a method needs to call another method inside the same object. I can't seem to figure out how to get a C method to call a Obj-C …
2
votes
6answers
609 views

Objective C : Release, Dealloc, and the Self reference.

So I thought I had all these questions all figured out. Then all of a sudden i get an error (a crash) i can't figure out. THen after doing research to remedy the crash, i notice everything that I …
2
votes
3answers
251 views

Ruby Definition of Self

Hi, I was reading a Ruby book and came across this definition of the pseudo-variable self: self - receiver object of the current method Could someone break down that definition and explain …
2
votes
5answers
649 views

Python, __init__ and self confusion

Alright, so I was taking a look at some source when I came across this: >>> def __parse(self, filename): ... "parse ID3v1.0 tags from MP3 file" ... self.clear() ... …
1
vote
1answer
33 views

[TSQL] Parent-Child view from table that is self referencing (ID)? (for tsql gurus.)

I have a organization name table with the following structure given below: CREATE TABLE [dbo].[DP_ORG_OrganizationUnit]( [GID] [uniqueidentifier] NULL, [ID] [int] IDENTITY(1,1) NOT FOR …
1
vote
2answers
200 views

Python decorators in classes

Hi, can one write sth like: class Test(object): def _decorator(self, foo): foo() @self._decorator def bar(self): pass This fails: self in @self is unknown I also …

1 2 3 next
15 30 50 per page