active questions tagged object-oriented-design - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T11:15:33Zhttp://stackoverflow.com/feeds/tag/object-oriented-designhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1945102/constructor-full-fledged-or-minimal0Constructor: Full fledged or minimal?racha2009-12-22T09:09:58Z2009-12-22T10:20:24Z
<p>When designing classes you usually have to decide between:</p>
<ul>
<li>providing a "full" constructor that takes the initial values for all required fields as arguments: clumsy to use but guarantees fully initialized and valid objects</li>
<li>providing just a "default" constructor and accessors for all necessary fields: might be convenient sometimes but does not guarantee that all members are properly initialized before some critical methods are called.</li>
<li>a mixed approach (more code, more work, can' eliminate the "not fully initialized" problem)</li>
</ul>
<p>I have seen several APIs and frameworks that use one of the above or even an inconsistent approach that differs from class to class. What are your thoughts and best practices on that subject?</p>
http://stackoverflow.com/questions/1944373/ruby-abstraction0Ruby abstractionTrevor Hartman2009-12-22T05:45:31Z2009-12-22T10:07:58Z
<p>I'm new to Ruby, coming primarily from C# and ActionScript 3 (among other langauges). I'm curious about abstracting functionality. Specifically, wrapping and abstracting Ruby's FTP and SFTP libs.</p>
<p>I was searching around and came across a gem called <a href="http://github.com/meskyanichi/backup" rel="nofollow">Backup</a>. It really got my attention because it supports backing stuff up via S3, SCP, SFTP and FTP. So I thought, "wow, here's a perfect example!" I started browsing the source, but then I came across code like:</p>
<pre><code>case backup.procedure.storage_name.to_sym
when :s3 then records = Backup::Record::S3.all :conditions => {:trigger => trigger}
when :scp then records = Backup::Record::SCP.all :conditions => {:trigger => trigger}
when :ftp then records = Backup::Record::FTP.all :conditions => {:trigger => trigger}
when :sftp then records = Backup::Record::SFTP.all :conditions => {:trigger => trigger}
end
</code></pre>
<p><a href="http://github.com/meskyanichi/backup/blob/master/bin/backup" rel="nofollow">view the full source on GitHub</a></p>
<p>It's littered with case/when statements! If I were attacking this in C#, I'd write a Protocol interface (or abstract class) and let FTP and SFTP implement it. Then my client class would just pass around an instance of Protocol without caring about the implementation. Zero switch/cases. </p>
<p>I'd appreciate a little guidance on best practices in this situation when coding in Ruby.</p>
http://stackoverflow.com/questions/1945003/how-to-learn-designing-applications-in-java1How to learn designing applications in JavaSreedhar2009-12-22T08:45:41Z2009-12-22T09:17:48Z
<p>Hi
I have been programming in Java for the past 2 years and now i want to get into Designing applications. So far i am only into coding ie; i am given design document/class diagram etc and asked to code. Now i want to learn how to design, i mean i want to lean when should a class be interface not a concrete class, coming up with design given the requirements , design techniqies and all the other aspects of desiging. </p>
<p>To learn all these could you plese suggest any series of articles/books etc.</p>
<p>I have tried reading Headfirst Design Patterns, but even though i am able to grasp few design patterns, i am still not able to get on to the desiging apllications on my own.</p>
<p>Please help.</p>
http://stackoverflow.com/questions/1944475/write-only-accessors-in-actionscript-3-bad-practice0Write-only accessors in Actionscript 3: Bad Practice?secoif2009-12-22T06:20:14Z2009-12-22T06:20:14Z
<p>I just can across some code where they've got an implicit setter, but no getter eg:</p>
<pre><code>public class Person {
//no getter!
public function set food(value:Food):void {
// do something with food.
this.processFood(value);
this.dispatchEvent(new Event(FoodEvent.EATEN));
}
}
</code></pre>
<p>This smells bad to me. Hacky. What do you think?</p>
http://stackoverflow.com/questions/1937362/can-you-write-any-algorithm-without-an-if-statement1Can you write any algorithm without an if statement?Bedwyr Humphreys2009-12-20T22:44:30Z2009-12-22T03:49:00Z
<p>This site tickled my sense of humour - <a href="http://www.antiifcampaign.com/" rel="nofollow">http://www.antiifcampaign.com/</a> but can polymorphism work in every case where you would use an if statement?</p>
http://stackoverflow.com/questions/1937426/the-right-way-to-handle-additional-user-data-in-django2The right way to handle additional user data in Django?Daniel Quinn2009-12-20T23:02:54Z2009-12-22T02:20:19Z
<p>I need to attach a significant number of additional properties to every user in my Django project. Some of these properties are simple CharFields, others are more complex ManyToManyFields. The trouble for me, is that in my digging around of ways to do this, I've found two options: <a href="http://docs.djangoproject.com/en/1.1/topics/auth/#storing-additional-information-about-users" rel="nofollow">The user profile method</a> explained in the documentation, and the <a href="http://scottbarnham.com/blog/2008/08/21/extending-the-django-user-model-with-inheritance/" rel="nofollow">user subclassing method</a> I see floating around the internet.</p>
<p>They both look complicated, and I'd rather not choose one only to find out that I need to go back and switch everything to the other method after months of development, so I ask here. Which way is the <em>right</em> way?</p>
http://stackoverflow.com/questions/1939928/oo-design-patterns-for-multi-threaded-synchronisation1OO design patterns for multi-threaded synchronisationmartinr2009-12-21T12:50:45Z2009-12-21T13:20:11Z
<p>Are there any generalisations of object and data and thread interactions given design pattern names?</p>
<p>Obviously what goes on a lot is synchronisation on an object, passing messages through a queue and also reference counts in memory management systems.</p>
<p>But are there any more OO-oriented names for multithreading design patterns and systems that cleanly embody best practice?</p>
http://stackoverflow.com/questions/293967/how-much-work-should-be-done-in-a-constructor18How much work should be done in a constructor?mintydog2008-11-16T15:14:04Z2009-12-21T11:02:46Z
<p>Should operations that could take some time be performed in a constructor or should the object be constructed and then initialised later.</p>
<p>For example when constructing an object that represents a directory structure should the population of the object and its children be done in the constructor. Clearly, a directory can contain directories and which in turn can contain directories and so on.</p>
<p>What is the elegant solution to this?</p>
http://stackoverflow.com/questions/1937476/c-design-question1C++ design questionunknown (google)2009-12-20T23:31:31Z2009-12-20T23:47:28Z
<p>Suppose I have a class Base which has a member variable A* my_hash.
I also have class Extended which inherits from class Base. I also have a class B
which extends A.</p>
<pre><code>class Base{
Base(): my_hash(new A) {}
//methods which use my_hash
protected:
A* my_hash;
};
class Extended:public Base{
//methods which use my_hash from A
//I cannot have a B* my_other_hash in this class
//I would like to substitute B* my_hash
//I cannot let Base create my_hash (of type A*) because that is not what I want.
};
</code></pre>
<p>I would like Extended to do the usual (i.e. use everything it inherits from A), except
and with one important difference, I want my_hash to be B* instead of A*.<br>
Whenever something accesses my_hash, either via Extended's methods or Base's methods,
I would like the methods to be executed to be B*'s. </p>
<p>One thing to try:
I cannot have a method call (e.g. create_hash() in Base()) which I redefine in Extended.
This does not work as there seems no way to go back up to the class Extended when I create the hash.</p>
<p>I would not like Base to even know about B. How do I do this?</p>
http://stackoverflow.com/questions/1824066/abstracting-from-stateful-object-navigation-1-1-the-challenge-1Abstracting from Stateful object navigation (1-1) - the challengeDmitriy Nagirnyak2009-12-01T04:49:00Z2009-12-20T22:43:08Z
<p>Hi,</p>
<p>The point of this exercise is to make navigation between objects stateful. </p>
<p>For example, having Person and Address with 1-1 association it should:</p>
<ul>
<li>If an address is assigned to a persons, then the person should be assigned to the address (and vice versa).</li>
<li>If address is assigned to person1 and then to person2, then the person1 will have no address and person2 will.</li>
</ul>
<p><hr></p>
<p>This is the piece of code that implements it.</p>
<pre><code>public class A {
internal B a;
public B Value {
get {
return a;
}
set {
if (value == null) {
if (a != null)
a.a = null;
} else
value.a = this;
a = value;
}
}
}
public class B {
internal A a;
public A Value {
get {
return a;
}
set {
if (value == null) {
if (a != null)
a.a = null;
} else
value.a = this;
a = value;
}
}
}
</code></pre>
<p>This allows following tests to pass:</p>
<pre><code>// For the common setup:
var a = new A();
var b = new B();
// Test 1:
a.Value = b;
Assert.AreSame(a, b.Value);
// Test 2:
b.Value = a;
Assert.AreEqual(b, a.Value);
// Test 3:
b.Value = a;
b.Value = null;
Assert.IsNull(a.Value);
// Test 4:
var a2 = new A();
b.Value = a2;
Assert.AreSame(b, a2.Value);
Assert.AreNotSame(a, b.Value);
// Test 5:
a.Value = b;
Assert.AreSame(a, b.Value);
var a1 = new A();
var b1 = new B();
a1.Value = b1;
Assert.AreSame(a1, b1.Value);
// Test 6:
var a1 = new A();
var b1 = new B();
Assert.IsNull(a.Value);
Assert.IsNull(b.Value);
Assert.IsNull(a1.Value);
Assert.IsNull(b1.Value);
</code></pre>
<p><hr></p>
<p>Now the question is: how would you abstract the code in the setters to avoid possible mistakes when writing a lot of such classes?</p>
<p>The conditions are:</p>
<ul>
<li>The PUBLIC interfaces of classes A and B cannot be changed. </li>
<li>Factories should not be used.</li>
<li>Statics should not be used (to persist shared info).</li>
<li>ThreadInfo or similar should not be used.</li>
</ul>
http://stackoverflow.com/questions/1936617/whats-an-elegant-and-easy-way-to-construct-xml-from-a-custom-object0What's an elegant and easy way to construct XML from a custom object?Velika2009-12-20T18:56:16Z2009-12-20T21:53:24Z
<p>I need to construct an XML transaction of the following format:</p>
<pre><code><RateV3Request USERID="MyId">
<Package ID="1ST">
<Service>ALL</Service>
<FirstClassMailType>LETTER</FirstClassMailType>
<ZipOrigination>06226</ZipOrigination>
<ZipDestination>06231</ZipDestination>
<Pounds>0</Pounds>
<Ounces>4.5</Ounces>
<Size>REGULAR</Size>
<Machinable>true</Machinable>
<ShipDate Option="EMSH">21-Dec-2009</ShipDate>
</Package>
</RateV3Request>
</code></pre>
<p>My thought was to create an object RateV3Request that contains typed properties for each XML property (I assume property is not the correct word here.)</p>
<p>I was thinking of creating a "GetXml" function on my object that returns the XML representation of the values in the object instance.I could do all the string concatenation myself, but surely there is a cleaner way.</p>
<p>Suggestions? I am using VB.NET</p>
http://stackoverflow.com/questions/1878558/jump-over-parent-constructor-to-call-grandparents5Jump over parent constructor to call grandparent'sGerman2009-12-10T04:03:44Z2009-12-20T20:49:34Z
<p>The problem is this: I have an abstract class that does some work in its constructor, and a set of child classes that implement the abstract class:</p>
<pre><code>class AbstractClass {
AbstractClass(){ /* useful implementation */ }
}
class ConcreteClass1 extends AbstractClass {
ConcreteClass1(){ super(); /* useful implementation */ }
}
</code></pre>
<p>Then, the concrete classes need to be customized and one solution is to extend the concrete classes:</p>
<pre><code>class CustomizedClass1 extends ConcreteClass1 {
CustomizedCLass1(){ super(); /* useful implementation */ }
}
</code></pre>
<p>BUT the problem is that the customized classes need only to call the abstract class's constructor and not the concrete class's constructor.</p>
<p>How do you achieve this? Suggestions to change the class's relationships are valid.</p>
<p>EDIT: The concrete example is that ConcreteClass1 and CustomizedClass1 have different sets of data (ConcreteData1 and CustomizedData1), and it is retrieved from the database in the class's constructor. The problem is that creating an instance of CustomizedClass1 will retrieve both data entities.</p>
<p>I am aware that using simple inheritance it's probably not the best thing to do, that's why I pointed out that suggestions to change the class's relationships are valid.</p>
http://stackoverflow.com/questions/1936284/why-arent-hot-swappable-vtables-a-popular-language-feature2Why aren't hot-swappable vtables a popular language feature?dsimcha2009-12-20T16:35:39Z2009-12-20T19:01:26Z
<p>In object-oriented programming, it's sometimes nice to be able to modify the behavior of an already-created object. Of course this can be done with relatively verbose techniques such as the strategy pattern. However, sometimes it would be nice to just completely change the type of the object by changing the vtable pointer after instantiation. This would be safe if, assuming you're switching from class A to class B:</p>
<ol>
<li>class B is a subclass of class A and does not add any new fields, or</li>
<li>class B and class A have the same parent class. Neither do anything except override virtual functions from the parent class. (No new fields or virtual functions.)</li>
<li>In either case, A and B must have the same invariants.</li>
</ol>
<p>This is hackable in C++ and the D programming language, because pointers can be arbitrarily cast around, but it's so ugly and hard to follow that I'd be scared to do it in code that needs to be understood by anyone else. Why isn't a higher-level way to do this generally provided?</p>
http://stackoverflow.com/questions/1932654/constructors-accepting-string-reference-bad-idea1Constructors accepting string reference. Bad idea?Salv02009-12-19T11:21:00Z2009-12-20T14:07:37Z
<p>It's considered a bad idea/bad design, have a class with a constructor accepting a reference, like the following?</p>
<pre><code>class Compiler
{
public:
Compiler( const std::string& fileName );
~Compiler();
//etc
private:
const std::string& m_CurrentFileName;
};
</code></pre>
<p>or should I use values?
I actually do care about performance.</p>
<p>Thank you in advance for the answers.</p>
http://stackoverflow.com/questions/760376/looking-for-example-program-written-in-different-languages2Looking for example program written in different languagesjumbojs2009-04-17T13:21:00Z2009-12-20T12:52:09Z
<p>As a way to understand the differences between OOP and Procedural languages I was looking for a sample program written in C and C++ or C# or Java. I just want to see the different approaches to the same problem to help me get a sense of the real differences. Does anyone know where I can find a tutorial like this?</p>
http://stackoverflow.com/questions/1908443/what-are-good-javascript-oop-resources11What are good JavaScript OOP resources?TK2009-12-15T16:01:42Z2009-12-20T04:33:06Z
<p>JavaScript is a lightweight and powerful language, but it's often misunderstood and hard to learn (especially about its object oriented programming). Here are what I found:</p>
<p><strong>Books</strong></p>
<ul>
<li><a href="http://rads.stackoverflow.com/amzn/click/0596517742" rel="nofollow">JavaScript: The Good Parts</a> by Douglas Crockfond, discusses many OOP topics in his 150 page book.</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/1847194141" rel="nofollow">Object-Oriented JavaScript: Create scalable, reusable high-quality JavaScript applications and libraries</a> by Stoyan Stefanov, goes through many OOP topics such as Objects, Prototype, Inheritance and some patterns.</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/159059908X" rel="nofollow">Pro JavaScript Design Patterns</a>, by Ross Harmess and Dustin Diaz, discuss application of famous design patterns in JavaScript.</li>
</ul>
<p><strong>Videos</strong></p>
<ul>
<li><a href="http://video.yahoo.com/watch/111585/1027823" rel="nofollow">"Advanced JavaScript" videos</a> by Douglas Crockford. Many other interesting videos are available at <a href="http://developer.yahoo.com/yui/theater/" rel="nofollow">Yahoo! Developer Network</a>.</li>
</ul>
<p><strong>On Stack Overflow</strong></p>
<ul>
<li><a href="http://stackoverflow.com/questions/795549/difference-between-classjava-and-closurejavascript">A Stack Overflow discussion on JavaScript closure</a></li>
<li><a href="http://stackoverflow.com/questions/1801957/what-exactly-does-closure-refer-to-in-javascript">A Stack Overflow discussion on What exactly does “closure” refer to in JavaScript?</a></li>
<li><a href="http://stackoverflow.com/questions/1557386/prototypal-vs-functional-oop-in-javascript">A Stack Overflow discussion on Prototypal vs Functional OOP in JavaScript</a></li>
</ul>
<p><strong>Others</strong></p>
<ul>
<li><a href="https://developer.mozilla.org/en/Introduction%5Fto%5FObject-Oriented%5FJavaScript" rel="nofollow">Introduction to Object-Oriented JavaScript</a> - Modzilla</li>
<li><a href="http://web.archive.org/web/20080209105120/http%3A//blog.morrisjohns.com/javascript%5Fclosures%5Ffor%5Fdummies" rel="nofollow">JavaScript Closures for Dummies</a></li>
<li><a href="http://www.jibbering.com/faq/faq%5Fnotes/closures.html" rel="nofollow">JavaScript Closures</a></li>
<li><a href="http://www.javascriptkit.com/javatutors/closures.shtml" rel="nofollow">JavaScript Closures 101</a></li>
<li><a href="http://www.crockford.com/javascript/private.html" rel="nofollow">Private Members in JavaScript</a> by Douglas Crockfond</li>
<li><a href="http://www.crockford.com/javascript/inheritance.html" rel="nofollow">Classical Inheritance in JavaScript</a> by by Douglas Crockfond</li>
<li><a href="http://javascript.crockford.com/prototypal.html" rel="nofollow">Prototypal Inheritance in JavaScript</a> by by Douglas Crockfond</li>
<li><a href="http://devlicio.us/blogs/sergio%5Fpereira/archive/2009/02/23/javascript-time-to-grok-closures.aspx" rel="nofollow">JavaScript, time to grok closures</a></li>
</ul>
<p>What are other good materials (blogs, screencasts and books) to learn JavaScript OOP? The topics can be anything, but let's not include browsers, AJAX and libraries for now.</p>
<p>Also how did you learn the functional programming, closure, object, inheritance and design patterns in JavaScript? Personally I would like to see more code examples because some of the books I mentioned above keep the example minimal.</p>
http://stackoverflow.com/questions/1910223/advantages-of-domain-object-representing-only-elements-of-one-type-over-being-abl1Advantages of Domain object representing only elements of one type over being able to represent several different types of elementscarewithl2009-12-15T20:38:05Z2009-12-19T19:26:02Z
<p>hi</p>
<p><br></p>
<p>1) As far as I’m aware, each domain object instance ( at BLL layer ) should completely represent an element of the domain ( an employee, book, car etc ). </p>
<p><br></p>
<p>So what is an advantage of having two types of domain objects, say one type representing a particular forum and other type representing a thread(s) in that forum, over having a single domain object type representing both a forum and thread(s) inside this forum? </p>
<p>Another example: what’s an advantage of having two types of domain objects, one representing an instance of a car, and other representing an instance of a bus, instead of having a single type of a domain object representing both a car and a bus?</p>
<p><br></p>
<p>2) Should domain object instance always represent an individual item of certain type, or can they also represent a group of items of same type? For example, is there a situation where a single object instance should represent a group of employees and not just a single employee?</p>
<p><br></p>
<p>thanx </p>
http://stackoverflow.com/questions/1809937/how-to-structure-a-genetic-algorithm-class-hierarchy0How to structure a Genetic Algorithm class hierarchy?MahlerFive2009-11-27T17:43:30Z2009-12-19T09:34:53Z
<p>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 population, calculating fitness, and terminating the algorithm, I need a way to plug in different combinations of these. My initial approach was to have an abstract class that had all of these methods defined as pure virtual, and any concrete class would have to implement them. If I want to try out two GAs that are the same but with different cross-over methods for example, I would have to make an abstract class that inherits from GeneticAlgorithm and implements all the methods except the cross-over method, then two concrete classes that inherit from this class and only implement the cross-over method. The downside to this is that every time I want to swap out a method or two to try out something new I have to make one or more new classes. </p>
<p>Is there another approach that might apply better to this problem?</p>
http://stackoverflow.com/questions/1866026/model-view-seperation-airplane-simulator1Model-view seperation, Airplane simulatorBerlioz2009-12-08T10:18:54Z2009-12-19T09:21:52Z
<p>I am trying to achieve Model-view separation. My airplane is a class. While developing the application, can't I use the console as sort of viewer. Can I spawn the airplane on it's own thread, while the console makes references to the airplane object to retrieve/read it's current altitude. I am trying to make the airplane an Active object, as in Java's runnable interface. How do you achieve this in .NET?</p>
http://stackoverflow.com/questions/1919295/can-i-set-the-type-of-a-javascript-object1Can I set the type of a Javascript object?Evan Kroske2009-12-17T03:37:07Z2009-12-18T21:22:42Z
<p>I'm trying to use some of the more advanced OO features of Javascript, following Doug Crawford's "super constructor" pattern. However, I don't know how to set and get types from my objects using Javascript's native type system. Here's how I have it now:</p>
<pre><code>function createBicycle(tires) {
var that = {};
that.tires = tires;
that.toString = function () {
return 'Bicycle with ' + tires + ' tires.';
}
}</code></pre>
<p>How can I set or retrieve the type of my new object? I don't want to create a <code>type</code> attribute if there's a right way to do it.</p>
<h2>Is there a way to override the <code>typeof</code> or <code>instanceof</code> operators for my custom object?</h2>
http://stackoverflow.com/questions/1154663/ddd-or-old-fashion0DDD or old fashion ?George Statis2009-07-20T16:50:38Z2009-12-17T22:23:42Z
<p>We are about to design a site for rentacar reservations using asp.net. There is a change that the application will scale up and I was wondering what if using DDD would help in maintenance and performance. I was wondering on what if there are new similar sites designed using datasets and SPs or DDD. So my friends to DDD or go old fashion ?</p>
http://stackoverflow.com/questions/1923101/monolithic-inheritance-vs-modular-member-based-oop-design2monolithic inheritance vs modular member based OOP designFire Crow2009-12-17T16:52:56Z2009-12-17T17:05:59Z
<p>I'm having a hard time making a design decision</p>
<p>I have a class in python, that processing form data, this data is very similar to other form data, and so I'm refactoring it into it's own object so it can be reused by the other classes.</p>
<p>The delima is weather to make this formprocessor a member of the classes or a parent of the classes.</p>
<p>please correct me if this terminology is wrong, here is what I'm torn between:</p>
<p>monolithic inheritance based classes:</p>
<pre><code>class FormProcessor(object):
def post(self):
# ... process form data
class PageHandler(RequestHandler,FormProcessor):
def get(self):
# show page
</code></pre>
<p>or the more modular member based classes:</p>
<pre><code>class FormProcessor(object):
def process(self):
# ... process form data
class PageHandler(RequestHandler):
def __init__(self):
self.processor = FormProcessor()
def get(self):
# show page
def post(self):
self.processor.process(self.postdata)
</code></pre>
<p>I'm leaning toward the second but I'm not sure what the consequences could be down the road in terms of maintainability. The reason I'm leaning toward it is that, I like to think of the processing as an action that takes place, not as a main part of the PageHandler, so this makes sense to make it a member object, instead of a parent.</p>
<p>It bothers me that when classes interit functionality it ends up with a very long list of functions on an instance, I'm trying to categorize them better so the program is understandable and reflects the system that it is modeling. </p>
<p>look forward to any advice on this issue</p>
http://stackoverflow.com/questions/1918310/oop-and-dynamic-typing-not-static-vs-dynamic4OOP and Dynamic Typing (not Static vs Dynamic)Dave Sims2009-12-16T22:37:02Z2009-12-17T15:28:43Z
<p>What OOP principles, if any, don't apply or apply differently in a dynamically typed environment as opposed to a statically-typed environment (for example Ruby vs C#)? This is not a call for a Static vs Dynamic debate, but rather I'd like to see whether there are accepted principles on either side of that divide that apply to one and not the other, or apply differently. Phrases like "prefer composition to inheritance" are well known in the statically-typed OOP literature. Are they just as applicable on the dynamic side?</p>
<p>For instance, in a dynamically typed environment, it would seem that the granularity of coupling goes no further than the level of the method. In other words, any given function call only couples the caller to that particular interface, which <em>any</em> class could possibly satisfy -- or to put it another way, anything that quacks like that particular duck. </p>
<p>In Java, on the other hand, the granularity of coupling can go as high as the package. Not only does a particular method call establish a contract with another class/interface, but also couples it into that classes/interface's package/jar/assembly. </p>
<p>Do differences like this give rise to different principles and patterns? If so have these differences been articulated? There's a section in the <a href="http://pragprog.com/titles/ruby/programming-ruby" rel="nofollow">Ruby Pickaxe</a> book that goes in this direction a bit (Duck Typing/Classes Aren't Types), but I'm wondering if there's anything else. I'm aware of <a href="http://designpatternsinruby.com/" rel="nofollow">Design Patterns in Ruby</a> but haven't read it. </p>
<p>EDIT -- It has been argued that <a href="http://en.wikipedia.org/wiki/Liskov%5Fsubstitution%5Fprinciple" rel="nofollow">Liskov</a> doesn't apply the same in a dynamic environment as it does in a static environment, but I can't help thinking that it does. On the one hand there is no high-level contract with an entire class. But don't all calls to any given class constitute an <em>implicit</em> contract that needs to be satisfied by child classes the way Liskov prescribes? Consider the following. The calls in "do some bar stuff" create a contract that needs to be attended to by child classes. Isn't this a case of "treating a specialized object as if it were a base class?":</p>
<pre><code>class Bartender
def initialize(bar)
@bar = bar
end
def do_some_bar_stuff
@bar.open
@bar.tend
@bar.close
end
end
class Bar
def open
# open the doors, turn on the lights
end
def tend
# tend the bar
end
def close
#clean the bathrooms
end
end
class BoringSportsBar < Bar
def open
# turn on Golden Tee, fire up the plasma screen
end
def tend
# serve lots of Bud Light
end
end
class NotQuiteAsBoringSportsBar < BoringSportsBar
def open
# turn on vintage arcade games
end
end
class SnootyBeerSnobBar < Bar
def open
# replace empty kegs of expensive Belgians
end
def tend
# serve lots of obscure ales, porters and IPAs from 124 different taps
end
end
# monday night
bartender = Bartender.new(BoringSportsBar.new)
bartender.do_some_bar_stuff
# wednesday night
bartender = Bartender.new(SnootyBeerSnobBar.new)
bartender.do_some_bar_stuff
# friday night
bartender = Bartender.new(NotQuiteAsBoringSportsBar.new)
bartender.do_some_bar_stuff
</code></pre>
http://stackoverflow.com/questions/1920831/java-simple-usecase-for-interface-usage-and-why-interface-1JAVA : simple usecase for interface usage and why interface ? [closed]Sidharth2009-12-17T10:36:57Z2009-12-17T10:56:07Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br>
<a href="http://stackoverflow.com/questions/444245/how-will-i-know-when-to-create-an-interface">How will I know when to create an interface?</a><br>
<a href="http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces">Why would I want to use Interfaces?</a> </p>
</blockquote>
<p>can anyone point me an simple usecase where java interface is useful also explain :why we go for interface?</p>
http://stackoverflow.com/questions/1919974/set-container-class-value-from-contained-class0Set Container class value from contained classChandra2009-12-17T07:10:10Z2009-12-17T07:14:52Z
<p>Sounds a simple question but haven't found a way to do, so would solicit any responses I get.</p>
<p>I have a winform which in turn contains a user control object. based on some condition in the user control, i have to set a value in the winform.
One way could be to pass the winform object as parameter to user control but that would give cyclic dependency. Is there a easy way out? </p>
http://stackoverflow.com/questions/1918178/can-the-ms-enterprise-library-build-object-model-and-code-from-a-database0Can the MS Enterprise Library build object model and code from a database?John Galt2009-12-16T22:14:22Z2009-12-16T22:21:43Z
<p>I have just encountered the MS Enterprise Application Library 3.1 in an application I need to support/enhance. I am trying to get up to speed quickly on Microsoft.Practices.EnterpriseLibrary.Data in particular. </p>
<p>The doc on this is quite good but the reading is vast and I am curious about one aspect of this:</p>
<p>Years ago when .Net 1.0 first came out, there was a tool described in a book called:
".Net Enterprise Development in VB.NET: From Design to Development" by Matthew Reynolds, Karli Watson, et al. </p>
<p>This tool was called the WEO Object Builder (Wrox Enterprise Objects) and as I recall it had a code generation facility where I could point this "object builder" program at a SQL Server database and it would generate an object model (classes corresponding to tables but with several variations and options available too). </p>
<p>This current project I've been handed uses:</p>
<pre><code>using Microsoft.Practices.EnterpriseLibrary.Data.Sql;
using Microsoft.Practices.EnterpriseLibrary.Common;
using Microsoft.Practices.EnterpriseLibrary.Data;
</code></pre>
<p>..and some of the doc reminds me of this old WEO thing. </p>
<p>Enterprise Library has an Microsoft.Practices.ObjectBuilder and Microsoft.Practices.ObjectBuilder2 but I don't think these do the same sort of thing as the old WEO thing did. </p>
<p>Is there a "modern-day" tool which builds "business objects" from a database schema? I've heard about the Entity Framework but not investigated at all? </p>
http://stackoverflow.com/questions/789373/object-oriented-analysis-and-real-life-oop-differences4Object oriented analysis and real life OOP differencesJader Dias2009-04-25T17:32:53Z2009-12-16T19:33:38Z
<p>I usually try to do TDD with not much analysis (no diagrams) before start coding. Usually I find myself spliting a class into other classes to separate concerns. I wonder if a deeper analysis would prevent that. I think that much of OO analysis can't predict some of those cases. What do you think?</p>
http://stackoverflow.com/questions/1915163/huge-performance-decline-when-accessing-object-in-associative-php-array6Huge performance decline when accessing object in associative PHP arraySanHolo2009-12-16T14:57:39Z2009-12-16T15:42:53Z
<p>I'm seeing a huge performance decline in a (command line) PHP script, caused by a simple assignment (runtime increase from 0.8 ~ 0.9 seconds to 29.x seconds).</p>
<p>The script first fetches a lot of data from a MySQL database and creates objects of different custom classes. After this fetching (php now uses around 500 MB of RAM) I loop an array of approximately 3'500 <code>Sample</code> objects, each of which has an associative array (size around 100 entries) as one of its properties. This array holds <code>Value</code> objects, which are small objects with two properties, and the keys are integers smaller than 6'000. This is where I stumbled upon the problem, see this code:</p>
<pre><code>foreach ($samples as $id => $s) { # $s is now a 'Sample' object
$values = $s->values(); # $values is an array of 'Value' objects
if (isset($values[$match_id])) {
$num_tested++;
# $val = $values[$match_id]; # contains a 'Value' object
# $val = &$values[...]; -> the loop never ends (!)
}
}
</code></pre>
<p>Note that commented line. If I run the code as it appears here, this block runs for about <strong>0.8 to 0.9 seconds</strong>. If I uncomment this single line, the block runs for <strong>almost 30 seconds</strong>. I found that if the array is non-associative (it only contains consecutive keys from 0 to about 100) the runtime only increases to 1.8 ~ 1.9 seconds.<br>
It seems that this happens because of the non-consecutive array keys I use, but then again why does the performance not already decline by calling <code>isset($values[$match_id])</code>? Is there a workaround for this or do I have to live with that?</p>
<p><em>Running PHP 5.3.0, Zend Engine v2.3.0, Mac OS X Server 10.6.2</em></p>
http://stackoverflow.com/questions/1022108/open-source-c-object-oriented-database0Open Source C++ Object Oriented Databasepdshift2009-06-20T17:46:16Z2009-12-16T13:10:27Z
<p>Hi,</p>
<p>Is there an open source object oriented database for C++ available? </p>
<p>I had looked at Object oriented Relationship Mapping (ORM) libraries like those posted here:
<a href="http://stackoverflow.com/questions/74141/good-orm-for-c-solutions">http://stackoverflow.com/questions/74141/good-orm-for-c-solutions</a></p>
<p>and these were intereting as well:
<a href="http://stackoverflow.com/questions/600684/object-oriented-like-structures-in-relational-databases">http://stackoverflow.com/questions/600684/object-oriented-like-structures-in-relational-databases</a>
<a href="http://en.wikipedia.org/wiki/List_of_object-relational_mapping_software#C.2B.2B" rel="nofollow">http://en.wikipedia.org/wiki/List_of_object-relational_mapping_software#C.2B.2B</a></p>
<p>My experience so far has been painful. The solutions don't appear to be mature and I've had difficulty even compiling some of them, and the documentation and support can be sparse. </p>
<p>I suppose at some level I'm trying to avoid learning SQL (I'm not a database developer). On the other hand, my gut feeling is that ORMs are an architectural 'workaround' in that they are creating a layer above a database system that inherently doesn't support objects. </p>
<p>My ideal database library would allow the following:</p>
<ol>
<li>Allow one to specify the object hierarchy tree based on class names, perhaps in XML or just in C++.</li>
<li>Allow one to specify which fields of those classes should be persistent. </li>
<li>Provide an API to create, update, delete, retreive the hierarchy of objects. </li>
<li>Ideally, provide an API for the in-memory tree itself, including concurrent access to tree nodes. </li>
</ol>
<p>I had worked on embedded system that had such a custom database and api.</p>
<p>I'm almost at the point where I'm just going to create my own and open source it. </p>
<p>Just wondering if there is anything off the shelf I can use. </p>
<p>I saw this:
<a href="http://en.wikipedia.org/wiki/Comparison_of_object_database_management_systems" rel="nofollow">http://en.wikipedia.org/wiki/Comparison_of_object_database_management_systems</a></p>
<p>and am trying to figure out this might work:</p>
<p><a href="http://www.fastdb.org/fastdb.html" rel="nofollow">http://www.fastdb.org/fastdb.html</a></p>
<p>Thanks in advance. </p>
http://stackoverflow.com/questions/1757985/object-representation-of-betting-rounds-at-poker0Object representation of betting rounds at pokerBeatMe2009-11-18T18:13:17Z2009-12-16T12:50:19Z
<p>Hi, I'm writing a HandConverter of a poker hand. This is my first project and I'm trying to do it right from the beginning.</p>
<p>I got already the most parts, like lists of players, their position, stack sizes, cards for different boards, what game is being played and so on, but I struggle with the representation of the betting, especially the different raises, bets and multiple calls from the same player. </p>
<p>I found some cases where my naive case based solution does not work, and it's really complicated and I dislike it. As it currently works for NL Hold'em I think I'll have more workarounds to do if I want to implement games like Stud, Razz and so on altough the betting structure is likely the same.</p>
<p>For now I use this representation and I would like to improve especially the <code>Round</code> and <code>Action</code> classes. Do you have some suggestions for me?</p>
<pre><code>public class HandHistory
{
public GameInfo GameInfo;
public TableInfo TableInfo;
public List<Player> Players;
public List<Round> Rounds;
public string rawtext;
public bool withHero;
}
public Round
{
public List<Action> Action;
public string Name;
public decimal Potsize;
public ulong Cards; //usually would have used a custom class,
//but I need them in a ulong mask for some library I use
}
public class Action
{
public Player Player;
public string Type;
public decimal Amount;
}
</code></pre>
<p>P.S. I'm also using a List to store the different rounds, is there better way like inheriting the round class for Flop, Turn and River e.g?</p>