0
votes
3answers
38 views
How to structure a Genetic Algorithm class hierarchy?
I'm doing some work with Genetic Algorithms and want to write my own GA classes. Since a GA can have different ways of doing selection, mutation, cross-over, generating an initial …
0
votes
3answers
346 views
jQuery val() Method on a Custom Object
I have an object called ValueBox that I created like this:
function ValueBox(params) {
...
$.extend(true, this, $('/* some HTML elements */'));
...
var $inputBox = $(' …
27
votes
23answers
2k views
How do you design object oriented projects?
I'm working on a large project (for me) which will have many classes and will need to be extensible, but I'm not sure how to plan out my program and how the classes need to interac …
4
votes
9answers
358 views
OO Design, open/closed principle question
I've been thinking about this object oriented design question for a while now and have unable to come up with a satisfactory solution, so thought I'd throw it open to the crowds he …
1
vote
3answers
48 views
Photoshop style GUI design
In a tool such as Photoshop, there is a selection of tools you can click on (e.g. pen, brush etc). Once you click on a tool, you can use that tool to paint, erase etc depending on …
2
votes
2answers
45 views
What is Method Dispatch?
What is Method Dispatch? I can find several concrete examples, but an abstract definition of method dispatch eludes me. Anyone care to venture theirs?
1
vote
3answers
75 views
building a factory with object repository in C++?
I want to create a factory for creation of objects implementing an abstract interface, which would return a reference to the object that is kept internally, and objects are not rep …
0
votes
1answer
31 views
AS3 Object Oriented GUI Design
I'm trying to make a small Flash game that has a GUI, which is basically a menu where players can select certain items, sort of like the Tower Defense games.
Would it be a good i …
0
votes
5answers
56 views
Design pattern for adding attributes to a base class
I am sure there is a clever way to handle this, but I just can't get it right in my head. Here is the scenario:
I have a base class with about 30 properties. Say that I have a p …
1
vote
2answers
21 views
Handling collection properties in a class and NHibernate entities
I was wondering what is the recommended way to expose a collection within a class and if it is any different from the way of doing that same thing when working with NHibernate enti …
0
votes
3answers
112 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 …
16
votes
22answers
2k views
Why are interfaces preferred to abstract classes?
I recently attended an interview and they asked me the question "Why Interfaces are preferred over Abstract classes?"
I tried giving a few answers like:
We can get only one Exte …
1
vote
2answers
57 views
Is Dependency Injection Chaining an Anti-Pattern?
Here is the problem, lets say we are making a video game and want to use Dependency Injection. Here is what we have:
Game Class // This is just the code to keep track of the over …
2
votes
2answers
55 views
Best API for modeling networked devices with arbitrary attributes to learn from?
I need to design a new API which models networked devices which have a large amount of attributes which vary quite a lot based on the device's type. The attribute set is not totall …
0
votes
2answers
12 views
shared functionality on usercontrol and form
Hi all,
I need to add shared functionality to both Forms and UserControls. Since multiple inheritance isn't supported in .net I wonder how I best tackle this?
The shared function …
