5
votes
12answers
149 views
Object oriented programming - class design confusion
I am trying to wrap my head around object oriented programming.
My understanding is that we have objects so we can design our programs to mirror real-life objects.
Lets take a cl …
3
votes
4answers
103 views
In Perl, how do I put multiple packages in a single .pm file?
I'm pretty sure that I read somewhere that it's possible, but there are a few gotchas that you need to be aware of. Unfortunately, I can't find the tutorial or page that described …
1
vote
4answers
102 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 anyon …
1
vote
2answers
31 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 …
5
votes
4answers
109 views
How do I define private or internal methods in object oriented Perl?
I'm using Damian Conway's "inside-out" objects as described is his wonderful book Perl Best Practices to construct an object-oriented interface to a security system at my client. …
1
vote
4answers
150 views
How Can I Make This Python Code More Usable And Readable?
Beginner in python, but been programming for about 5 years now. I suspect I have a lot to learn about doing things the object oriented way, but I know the basics. I planned on prog …
6
votes
6answers
163 views
Object-Oriented Perl constructor syntax
I'm a little confused about what is going on in Perl constructors. I found these two examples perldoc perlbot.
package Foo;
#In Perl, the constructor is just a subroutine called …
6
votes
6answers
219 views
Where does the idea that an object should only do one thing come from?
I'm not sure I agree with it, so I'd like to find the book or journal article behind this idea so that I can check that I understand exactly what they're saying and what context th …
17
votes
18answers
1k views
Why use getters and setters?
What's the advantage of using getters and setters - that only get and set - instead of simply using public fields for those variables?
If getters and setters are ever doing more t …
5
votes
11answers
138 views
Where can I find object-oriented Perl tutorials?
A Google search yields a number of results - but which ones are the best?
The Perl site appears to contain two - perlboot and perltoot. I'm reading these now, but what else is out …
0
votes
2answers
96 views
interface Vs abstractclass class [closed]
Possible Duplicates:
Abstract class and Interface class?
Why are interfaces preferred to abstract classes?
Java interface vs. abstract class
Need for abs …
1
vote
3answers
47 views
JSON with classes?
Is there a standardized way to store classes in JSON, and then converting them back into classes again from a string? For example, I might have an array of objects of type Question …
0
votes
3answers
56 views
Is there any library for T-SQL to turn it object oriented?
Hi all,
Microsoft Ajax Library has added full object orientation to JavaScript. Is there any library, framework, component, package, etc equivalent for T-SQL? It would be very nic …
3
votes
4answers
97 views
How dynamic casts work?
Let's say I have type A, and a derived type B. When I perform a dynamic cast from A* to B*, what kind of "runtime checks" the environment performs? How does it know that the cast i …
1
vote
7answers
155 views
Self Instantiation in Java
How do I self-instantiate a Java class? I should not use any file other than its class file. Also assume that after the line where I initialized the NAME variable, they don't know …
