1
vote
0answers
35 views
Erlang (Functional Programming) vs Object Oriented Programming in terms of thinking
I am learning Erlang and I am trying to create a very sample blog program. However my mind currently is trapped in the OO world (var p = new Post(); p.Title = ""; p.Save();). I would like to …
0
votes
4answers
70 views
Java NullPointerException When I call a method on a custom class
I get a null pointer exception when a call a method on a custom class. I do not see why my object p of class Player is null. (Player is a class of Players of my game) play is the method. This class …
2
votes
4answers
156 views
What is the proper object relationship? (C#)
Hi,
I had a quick question about the proper object relationship I should set up for this situation:
I have a Customer object with associated parameters and a depot object with associated …
1
vote
1answer
77 views
Is there a difference between new Obj() and Obj->new() in Perl ? [closed]
Possible Duplicate:
What is the difference between new Some::Class and Some::Class->new() in Perl?
I encountered 2 different Perl object construction syntaxes on the Internet :
my $a = …
0
votes
2answers
91 views
Is it good practice to use a Dynamic Array in an object field ?
I am refactoring some existing Delphi code into a class.
The current code uses a global variable defined as a dynamic array array of byte. At initialization time the code figures out the size of the …
1
vote
2answers
111 views
NameError: name ‘self’ is not defined
Why such structure
class A:
def __init__(self, a):
self.a = a
def p(self, b=self.a):
print b
gives an error NameError: name 'self' is not defined?
0
votes
3answers
115 views
Overcoming Python’s limitations regarding instance methods
It seems that Python has some limitations regarding instance methods.
Instance methods can't be copied.
Instance methods can't be pickled.
This is problematic for me, because I work on a very …
2
votes
5answers
239 views
Object oriented design?
I'm trying to learn object oriented programming, but am having a hard time overcoming my structured programming background (mainly C, but many others over time). I thought I'd write a simple check …
1
vote
2answers
63 views
C# - Inheritance from method to method within a class?
Is it possible to inherit a method within a class?
Or does it always need to be parent class inheriting child class?
For example:
A class called make_chart
Has:
public void style_Chart(Chart …
0
votes
3answers
67 views
Singleton Pattern and Abstraction in JS
Although the example below exploits ExtJS, one can easily extrapolate to another framework. I am a fan of abstraction and data hiding (and OO in general); does anyone else hide data and …
1
vote
2answers
105 views
What is the purpose of a method that returns the receiver itself (Go)?
This function in pkg go/token makes me wonder why we need a method that returns the receiver itself.
// Token source positions are represented by a Position value.
// A Position is valid if the line …
1
vote
2answers
393 views
Matlab copy constructor
Hi,
Is there a better way to implement copy construcor for matlab for a handle derived class other than adding a constructor with one input and explicitly copying its properties?
obj.property1 = …
0
votes
4answers
238 views
Java Interfaces?
I really need help with interfaces in general...
Any resources that you guys would recommend me?
Related:
How are Java interfaces actually used?
Java interface and inheritance
Java Interface Usage …
1
vote
2answers
35 views
Applying Normalization techniques to Object Modeling
Hi all
Over the years i have followed the techniques of DB normalization to atleast identify the relationships and entities of my object models , it always got me closer to a very reasonable design.
…
1
vote
4answers
105 views
Can anyone explain delegates in simple terms [closed]
Possible Duplicate:
How does a delegate work in objective-C?
Hi lately I have been programming in Objective C, I am not able to grasp the concept of delegates... can anyone please explain the …
