active questions tagged ood - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T06:07:14Zhttp://stackoverflow.com/feeds/tag/oodhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1751500/are-scenarios-stories-the-new-interface-in-bdd-tdd0are scenarios/stories the new interface in BDD/TDD?koen2009-11-17T20:21:33Z2009-11-23T10:59:06Z
<p>PHP is somewhat crippled since it doesn't have return types (yet). I need my code to throw an exception when X already exists. I can write this in a scenario, but I'm not able to go from the scenarios to the interface my class should implement.</p>
<p>Actually this problem is the same in TDD I guess. There seems more that I can tell through my 'tests' than through my interfaces. Yet my interfaces define what components can interact, what responsibilities they should take.</p>
<p>The problem is bigger in PHP because it doesn't have return types but it also exists in other languages because there is no contract that says an exception should be thrown when x is the case.</p>
<p>How can I best deal with this?</p>
http://stackoverflow.com/questions/1763129/code-generation-for-composition-using-eclipse1Code generation for composition using Eclipseteabot2009-11-19T13:00:59Z2009-11-19T13:06:12Z
<p><a href="http://java.sun.com/docs/books/effective/" rel="nofollow">Effective Java</a>, along with other sources suggest that we should consider using <a href="http://stackoverflow.com/questions/49002/prefer-composition-over-inheritance">composition over inheritance</a>. I have often found my self achieving such composition by using the <a href="http://en.wikipedia.org/wiki/Decorator%5Fpattern" rel="nofollow">Decorator pattern</a> and implementing forwarding methods that delegate invocations to a wrapped object.</p>
<p>However, I often find myself writing many simple forwarding methods of the type:</p>
<pre><code>public void myMethod(String name) {
instance.myMethod(name);
}
</code></pre>
<p>Is there anyway of auto-generating these forwarding methods within Eclipse (3.4.x)?</p>
http://stackoverflow.com/questions/372700/get-set-in-the-c-world-faux-pas8Get/Set in the c++ world, faux-pas?ApplePieIsGood2008-12-16T21:03:31Z2009-11-18T00:14:43Z
<p>I notice that get/set is not the c++ way as far as I can tell by looking at boost/stl, and even reading the writings of some of the top c++ experts.</p>
<p>Does anyone use get/set in their c++ class design, and can someone suggest a rule of thumb on where if at all this paradigm belongs in the c++ world?</p>
<p>It is obviously very popular in Java, and imitated by c# using Property syntactic sugar.</p>
<p>EDIT:</p>
<p>Well after reading more about this in one of the links provided in an answer below, I came across at least one argument for keeping the accessors of a member field the same name as the member field. Namely that you could simply expose the member field as public, and instead make it an instance of a class, and then overload the () operator. By using set/get, you'd force clients to not only recompile, but to actually change their code. </p>
<p>Not sure I love the idea, seems a bit too fine grained to me, but more details are here:</p>
<p><a href="http://www.kirit.com/C%2B%2B%20killed%20the%20get%20%26%20set%20accessors" rel="nofollow">C++ Killed the Getter/Setter</a></p>
http://stackoverflow.com/questions/1703747/where-does-the-idea-that-an-object-should-only-do-one-thing-come-from6Where does the idea that an object should only do one thing come from?cartoonfox2009-11-09T20:54:41Z2009-11-09T22:14:52Z
<p>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 they mean it.</p>
<p>I think I understand the idea - I just want to know the source so I can check where the idea comes from.</p>
http://stackoverflow.com/questions/1345001/is-it-bad-practice-to-make-a-setter-return-this11Is it bad practice to make a setter return "this"?Ken Liu2009-08-28T04:21:58Z2009-11-01T05:51:05Z
<p>Is it a good or bad idea to make setters in java return "this"?</p>
<pre><code>public Employee setName(String name){
this.name = name;
return this;
}
</code></pre>
<p>This pattern can be useful because then you can chain setters like this:</p>
<pre><code>list.add(new Employee().setName("Jack Sparrow").setId(1).setFoo("bacon!"));
</code></pre>
<p>instead of this:</p>
<pre><code>Employee e = new Employee();
e.setName("Jack Sparrow");
...and so on...
list.add(e);
</code></pre>
<p>...but it sort of goes against standard convention. I suppose it might be worthwhile just because it can make that setter do something else useful. I've seen this pattern used some places (e.g. JMock, JPA), but it seems uncommon, and only generally used for very well defined APIs where this pattern is used everywhere.</p>
<p>Update:</p>
<p>What I've described is obviously valid, but what I am really looking for is some thoughts on whether this is generally acceptable, and if there are any pitfalls or related best practices. I know about the Builder pattern but it is a little more involved then what I am describing - as Josh Bloch describes it there is an associated static Builder class for object creation.</p>
http://stackoverflow.com/questions/1610908/why-was-tdatasource-created-originally4Why was TDataSource created originally?Jamo2009-10-23T01:09:02Z2009-10-23T09:54:35Z
<p>What was (or would be) the reasoning behind creating TDataSource as an intermediary between data bound components and the actual underlying TDataSets, rather than having the components just connect directly to the TDataSets themselves?</p>
<p>This may seem like kind of a stupid question, but I am working on a broad set of "data viewer" components, which link to a common "data connector" component, etc; and in designing this set of components, I find myself referencing the structure of the classic Delphi "TDataSet -> TDataSource -> Data-bound-component" setup for guidance. In <em>my</em> component set, however, I keep wanting to essentially merge the functionality of the "TDataSource" and "TDataSet" equivalents into a single class. It got me wondering what the reasoning was behind separating them in the first place.</p>
http://stackoverflow.com/questions/1600141/responsibility-based-modeling-versus-class-reasons-to-change0responsibility based modeling versus class reasons to changekoen2009-10-21T11:08:48Z2009-10-22T13:00:19Z
<p>In <a href="http://alistair.cockburn.us/Responsibility-based+modeling" rel="nofollow">this</a> text I read</p>
<blockquote>
<p>Be alert for a component that is just
a glorified responsibility. A
component is supposed to capture an
abstraction that has a purpose in the
system. It may happen that what
appears at one moment as a meaningful
component is really just a single
responsibility left on its own. That
responsibility could be assigned to a
component.</p>
</blockquote>
<p>This confuses me. If a class should have only one reason to change, it seems like it should have one responsibility. But now it seems I'm taking this too narrow. Can somehow give an explanation of responsibility and reason to change in the context of responsibility based modeling? Can a class have more than two responsibilities and still have one reason to change (or the other way around)?</p>
http://stackoverflow.com/questions/24270/whats-the-point-of-oop38What's the point of OOP?DrPizza2008-08-23T14:40:28Z2009-10-20T15:54:57Z
<p>As far as I can tell, in spite of the countless millions or billions spent on OOP education, languages, and tools, OOP has not improved developer productivity or software reliability, nor has it reduced development costs. Few people use OOP in any rigorous sense (few people adhere to or understand principles such as LSP); there seems to be little uniformity or consistency to the approaches that people take to modelling problem domains. All too often, the class is used simply for its syntactic sugar; it puts the functions for a record type into their own little namespace.</p>
<p>I've written a large amount of code for a wide variety of applications. Although there have been places where true substitutable subtyping played a valuable role in the application, these have been pretty exceptional. In general, though much lip service is given to talk of "re-use" the reality is that unless a piece of code does <em>exactly</em> what you want it to do, there's very little cost-effective "re-use". It's extremely hard to design classes to be extensible <em>in the right way</em>, and so the cost of extension is normally so great that "re-use" simply isn't worthwhile.</p>
<p>In many regards, this doesn't surprise me. The real world isn't "OO", and the idea implicit in OO--that we can model things with some class taxonomy--seems to me very fundamentally flawed (I can sit on a table, a tree stump, a car bonnet, someone's lap--but not one of those is-a chair). Even if we move to more abstract domains, OO modelling is often difficult, counterintuitive, and ultimately unhelpful (consider the classic examples of circles/ellipses or squares/rectangles).</p>
<p>So what am I missing here? Where's the value of OOP, and why has all the time and money failed to make software any better?</p>
http://stackoverflow.com/questions/98878/how-does-one-elaborate-design-using-crc-cards12How does one elaborate design using CRC cards?Statement2008-09-19T02:07:23Z2009-10-13T16:50:34Z
<p>I've always been wondering how people use CRC (class responsiblity collaboration) cards. I've read about them in books, found vague information on the internet, but never grasped it really. I think someone ought to make a youtube video showing a session with CRC cards, since one of my books described it as being very hard to formulate in text, that it should be "taught by someone who already masters it". Sadly, I know noone around here who uses CRC cards and I'd like to learn more.</p>
<h2>UPDATE</h2>
<p>I really would like to grasp this technique. Any links to videos showing people doing it would be apprechiated.</p>
http://stackoverflow.com/questions/1548370/self-contained-classes-with-qt0Self contained classes with QtReality2009-10-10T16:21:02Z2009-10-10T16:55:30Z
<p>I've been trying to make my classes completely self contained, but I'm having some problems, which are probably coming from my missing something that everybody else knew first off...</p>
<p>Anyway, take this example:</p>
<pre><code>class Main_Window (QtGui.QMainWindow):
def __init__ (self, parent=None):
QtGui.QWidget.__init__(self, parent)
self.ui = Ui_bookingSystemMain()
self.ui.setupUi(self)
# Connect slots
QtCore.QObject.connect(self.ui.submitRecord, QtCore.SIGNAL("clicked()"), self.__clickSubmitRecord)
QtCore.QObject.connect(self.ui.btnListBookings, QtCore.SIGNAL("clicked()"), self.__show_list)
def __clickSubmitRecord (self):
global bookings
name = self.ui.edtName.text()
event = str(self.ui.comEvent.currentText())
amount = self.ui.spinBox.value()
if name == '':
QtGui.QMessageBox.warning(self, "Error", "Please enter a name!")
elif amount == 0:
QtGui.QMessageBox.warning(self, "Error", "You can't reserve 0 tickets!")
elif event == '':
QtGui.QMessageBox.warning(self, "Error", "Please choose an event!")
else:
bookings.append(Booking(name, event, amount))
QtGui.QMessageBox.information(self, "Booking added", "Your booking for " + str(amount) + " ticket(s) to see " + event + " in the name of " + name + " was sucessful.")
self.__clear_widgets()
def __clear_widgets (self):
self.ui.edtName.clear()
self.ui.comEvent.setCurrentIndex(-1)
self.ui.spinBox.setValue(0)
def __show_list (self):
listdialog = List_Window(self)
listdialog.show()
</code></pre>
<p>Which implements a UI described in another module. The clickSubmitRecord() method uses the global 'booking' list and adds to it - now surely this class shouldn't have anything to do with anything other than that UI?</p>
<p>How would I implement this in a good ood way? As I said I'm probably missing some kind of technique or obvious design feature...</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/62539/what-is-the-dependency-inversion-principle-and-why-is-it-important10What is the Dependency Inversion Principle and why is it important?Phillip Wells2008-09-15T12:53:20Z2009-10-08T21:03:43Z
<p>What is the Dependency Inversion Principle and why is it important?</p>
http://stackoverflow.com/questions/1537125/software-applications-designs0Software Applications DesignsJMSA2009-10-08T11:10:30Z2009-10-08T11:35:01Z
<p>Is strict OOD/Interface-based design/Aspect oriented design is desirable in case of a software application development?</p>
<p>Or, is it desirable to mix all of them for the ease of coding?</p>
<p>Are all successful and highly maintainable software applications strictly Object oriented, or, strictly Interface oriented, or, strictly Aspect Oriented, or a mix of them?</p>
<p>If they are so strict, which methodology should I follow to avoid analysis paralysis while achieving an extremely powerful design in case of these three?</p>
<p>If you think that, Interface-based programming and AOP are just only the extensions of OOP then think this way, how were the softwares designed before the concepts of Interface-based Programming and AOP arrived?</p>
<p>And also AOP may need an AOP container.</p>
http://stackoverflow.com/questions/1401683/how-to-design-an-interface-for-muliply-containment0How to design an interface for muliply containmentA.A.2009-09-09T19:44:07Z2009-10-07T14:00:04Z
<p>Consider the following simplified demonstration:
Class X contain class Y. Class Y has public method, Y.doY Stuff().</p>
<p>How to design X interface which use Y methods as is?</p>
<p>If one append public method to X which simply forward the requst to Y, it results in an undesirable fat X interface and dependency of X code to Y code.
This approach gets worst at multiply containment.</p>
<p>If one use indirect access, such as X.Y.doYStuff(), it becomes a much cleaner design, but results in breaking the X encapsulation.</p>
<p>So, is there a clean and correct design which enables using methods of inner class out of there wrapper class?</p>
http://stackoverflow.com/questions/56860/what-is-the-liskov-substitution-principle18What is the Liskov Substitution Principle?NotMyself2008-09-11T15:17:38Z2009-10-07T02:44:33Z
<p>I have heard that the Liskov Substitution Principle (LSP) is a fundamental principle of object oriented design. What is it and what are some examples of its use?</p>
http://stackoverflow.com/questions/68156/doing-away-with-globals3Doing away with Globals?Allain Lalonde2008-09-16T00:13:58Z2009-10-01T19:51:22Z
<p>I have a set of tree objects with a depth somewhere in the 20s. Each of the nodes in this tree needs access to its tree's root.</p>
<p>A couple of solutions:</p>
<ol>
<li>Each node can store a reference to the root directly (wastes memory)</li>
<li>I can compute the root at runtime by "going up" (wastes cycles)</li>
<li><s>I can use static fields (but this amounts to globals)</s></li>
</ol>
<p>Can someone provide a design that doesn't use a global (in any variation) but is more efficient that #1 or #2 in both memory or cycles respectively?</p>
<p><strong>Edit:</strong> Since I have a Set of Trees, I can't simply store it in a static since it'd be hard to differentiate between trees. (thanks maccullt)</p>
http://stackoverflow.com/questions/1493863/whats-the-difference-between-use-case-user-story-and-usage-scenario2What's the difference between "use case", "User Story" and "Usage Scenario"?Henning2009-09-29T17:16:19Z2009-09-29T23:59:26Z
<p>Is there an exact, but simple and understandable defintion of the distinction between "use case", "User Story" and "Usage Scenario"?</p>
<p>there are quite a bunch of explanation, but right now, I see no one that explains the differences in a single sentence, or two... </p>
<p>(e.g. <a href="http://c2.com/cgi-bin/wiki?UserStoryAndUseCaseComparison" rel="nofollow">http://c2.com/cgi-bin/wiki?UserStoryAndUseCaseComparison</a> very long and hard to get, full of discussion)</p>
http://stackoverflow.com/questions/1438326/is-the-set-of-solid-principles-missing-an-extra-d2Is the set of SOLID principles missing an extra 'D'?teabot2009-09-17T11:39:55Z2009-09-17T11:46:02Z
<p>Although not a pure <a href="http://en.wikipedia.org/wiki/OOD" rel="nofollow">OOD</a> principle - should <a href="http://en.wikipedia.org/wiki/Don%27t%5Frepeat%5Fyourself" rel="nofollow">DRY</a> also be included when thinking about <a href="http://en.wikipedia.org/wiki/Solid%5F%28Object%5FOriented%5FDesign%29" rel="nofollow">SOLID</a> principles? If not - why not?</p>
http://stackoverflow.com/questions/1069187/how-to-design-many-to-many-relationships-in-an-object-database3How to design many-to-many relationships in an object database?paul2009-07-01T13:36:02Z2009-09-02T19:40:17Z
<p>I thought it was about time to have a look at OO databases and decided to use db4o for my next little project - a small library.</p>
<p>Consider the following objects: Book, Category.</p>
<p>A Book can be in 0-n categories and a Category can be applied to 0-m Books.</p>
<p>My first thought is to have a joining object such as BookCatecory but after a bit of Googling I see that this is not appropriate for 'Real OO'.</p>
<p>So another approach (recommended by many) is to have a list in both objects: Book.categories and Category.books. One side handles the relationship: Book.addCategory adds Category to Book.categories and Book to Category.books. How to handle commits and rollbacks when 2 objects are been altered within one method call?</p>
<p>What are your thoughts? The second approach has obvious advantages but, for me at least, the first 'feels' right (better normed). </p>
http://stackoverflow.com/questions/747913/why-would-i-ever-use-a-chain-of-responsibility-over-a-decorator6Why would I ever use a Chain of Responsibility over a Decorator?George Mauer2009-04-14T14:38:18Z2009-08-29T09:35:54Z
<p>I'm just reading up on the <a href="http://www.dofactory.com/Patterns/PatternChain.aspx" rel="nofollow">Chain of Responsibility</a> pattern and I'm having trouble imagining a scenario when I would prefer its use over that of <a href="http://www.dofactory.com/Patterns/PatternDecorator.aspx" rel="nofollow">decorator</a>.</p>
<p>What do you think? Does CoR have a niche use?</p>
http://stackoverflow.com/questions/1310477/ood-oop-etudes-code-exercises2OOD / OOP Etudes / Code exercisesGishu2009-08-21T07:28:37Z2009-08-25T10:49:17Z
<p>I've been searching the web for some time now. I am looking for small sample exercises for OOD practice (& for some internal TDD workshops).<br />
If there is one single place, where this need is being served, please point me to it.. and close this question</p>
<p>Constraints:</p>
<ol>
<li>Language-agnostic real world problem</li>
<li>Small : Something that takes an hour to two at max to solve (or has sub-parts that can fit this constraint). </li>
<li>Not Algorithm centred : Not be focussed on just solving a computational task. (There are multiple sites that serve this category.) Involve > 2 interacting entities.</li>
<li>Solved by multiple people, preferably yourself : Goodness verified. Links preferred. Please do not post something that <em>may</em> be a good exercise... subjective</li>
</ol>
<p>Similar SO question <a href="http://stackoverflow.com/questions/60109/good-challenges-tasks-exercises-for-learning-or-improving-object-oriented-program">60109</a>, but the answers dont meet my need here. I found that I've lost my touch (was thrashing ideas) with OOD after prolonged exposure to a day-job. Need to get it back.. </p>
<p><strong>Update:</strong> Are we collectively out of short OOP exercises ? I was hoping that I'd have a bunch to pick from. However my web-searches (this is a diff exercise in formulating the right search string) and the lack of responses here seem to indicate otherwise. Maybe I posted to SO at a bad time.. in which case bumping this thread for more responses. </p>
http://stackoverflow.com/questions/56867/interface-vs-base-class117Interface vs Base classHowler2008-09-11T15:20:30Z2009-08-25T03:24:21Z
<p>When should I use an interface and when should I use a base class? </p>
<p>Should it always be an interface if I don't want to actually define a base implementation of the methods?</p>
<p>If I have a Dog and Cat class. Why would I want to implement IPet instead of PetBase? I can understand having interfaces for ISheds or IBarks (IMakesNoise?), because those can be placed on a pet by pet basis, but I don't understand which to use for a generic Pet.</p>
http://stackoverflow.com/questions/1311520/database-replication-ood-pattern0Database Replication OOD PatternMrOnigiri2009-08-21T11:54:03Z2009-08-21T12:00:16Z
<p>Greetings fellow overflowers,</p>
<p>After reading on MSDN about correct strategies on how to perform database replication, and understanding their suggestion on <a href="http://msdn.microsoft.com/en-us/library/ms998441.aspx" rel="nofollow">Master-Subordinate Incremental Replication</a>. It left me wondering, what OOD design pattern should I use on this...</p>
<p>The main elements of this strategy are the Acquirer, the Manipulator and the Writer. The first fetches data from the database and passes on to the second which might perform simple transformations to the data, before handling it to the final element, the writer, that writes the desired data on the destination Database.</p>
<p>I thought about using the Chain of Responsibility pattern, but the Acquirer, Manipulator and Writer don't share a common role among theme, so It makes no sense.</p>
<p>Should these elements be written as separate classes, or methods inside my service? Of course I'll be creating a DB Helper class as well, but that doesn't constitutes a problem.</p>
<p>Wondering what your opinions on this are!
Thanks for your replies</p>
http://stackoverflow.com/questions/1295966/access-modifier-best-practice-in-c-vs-java1Access modifier best practice in C# vs Javasweeney2009-08-18T19:28:07Z2009-08-19T13:53:05Z
<p>Hi All,</p>
<p>I understand that the rule of thumb in OOD is to minimize access to all members of a given object as best as can be reasonably accomplished.</p>
<p><em>C# and Java both seem to implement the same set of access modifiers; however, something which has bewildered me for some time now is why Java classes seem to be mostly declared as public while C# classes seem mostly to be declared as default.</em> <strong>Is there some subtlety to these languages which imposes these differences, or is it simply a matter of convention or what?</strong></p>
<p>I find myself frequently going through my C# code (I habitually make most classes public, excepting inner classes, anonymous classes, and other classes of narrow scope and usefulness) in an attempt to please the compiler, however I wonder if I may be missing something important.</p>
<p>Thanks,
Brian</p>
<p>PS - Not sure how subjective this may be; would this make a better wiki question?
PPS - I've already read Effective Java by Josh Bloch and understand that you should limit access to things as much as possible. That is not my question.</p>
http://stackoverflow.com/questions/1009528/entity-relationship-modeling-how-to-implement-entity-roles2Entity relationship modeling: how to implement entity "roles"?Boden2009-06-17T21:07:54Z2009-08-07T09:13:06Z
<p>I've done a bit of reading on data modeling recently and have a question about roles that an entity may play.</p>
<p>Consider a simple case where you've got a Company, and a Company can be a Supplier, Customer, Distributor, etc. or a combination of these roles. So company X might be both a Supplier and a Customer.</p>
<p>Down at the data level you might have a table for CompanyS and then tables for SupplierS, CustomerS, etc that reference the Company table. At least I think this is how it might be represented.</p>
<p>Ok, so somewhere up in application-land you've got classes for CustomerS and SupplierS and so on. Each would be composed of a Company, and then whatever else is special about that particular class.</p>
<p>That's all ok and makes sense to me as long as we're only working with one entity class at a time. What if we want to start with a Company and see what roles it's playing? So in an application I might pull up a Company and see that it is a Supplier and a Distributor.</p>
<p>Now there are a few different ways I can think of to do this, but I feel that because this problem domain is so old that there must be some tried and true patterns for modeling these concepts. </p>
<p>Thus what I am in search of here are common strategies or patterns for modeling entity roles up at the application level. Specific reference material about this particular subject would be greatly appreciated (be it blogs or books or whatever).</p>
http://stackoverflow.com/questions/1198969/architecture-design-for-datainterface-remove-switch-on-type0Architecture Design for DataInterface - remove switch on typeKildareflare2009-07-29T09:14:22Z2009-07-29T09:50:06Z
<p>I am developing a project that calculates various factors for a configuration of components.
The configuration is set/changed by the user at runtime. I have a Component base class and all configuration items are derived from it.</p>
<p>The information for each component is retrieved from data storage as and when it is required.
So that the storage medium can change I have written a DataInterface class to act as an intermediary.</p>
<p>Currently the storage medium is an Access Database. The DataInterface class thus opens the database and creates query strings to extract the relevant data. The query string will be different for each component.</p>
<p>The problem I have is designing how the call to GetData is made between the component class and the DataInterface class. My solutions have evolved as follows:</p>
<p>1) DataInterface has a public method GetXXXXData() for each component type. (where XXX is component type).</p>
<pre><code>Sensor sensor = new Sensor();
sensor.Data = DataInterface.GetSensorData();
</code></pre>
<p>2) DataInterface has a public method GetData(componentType) and switches inside on component type.</p>
<pre><code>Sensor sensor = new Sensor();
sensor.Data = DataInterface.GetData(ComponentType.Sensor);
</code></pre>
<p>3) Abstract component base class has virtual method GetData() which is overidden by each derived class. GetData() makes use of the DataInterface class to extract data.</p>
<pre><code>Sensor sensor = new Sensor();
sensor.GetData();
//populates Data field internally. Could be called in constructor
</code></pre>
<p>For me solution 3 appears to be the most OOD way of doing things. The problem I still have however is that the DataInterface still needs to switch on the type of the caller to determine which query string to use.</p>
<p>I could put this information in each component object but then this couples the components to the storage medium chosen. Not good. Also, the component should not care how the data is stored. It should just call its GetData method and get data back.</p>
<p>Hopefully, that makes sense. What im looking for is a way to implement the above functionality that does not depend on using a switch on type.</p>
<p>I'm still learning how to design architecture so any comments on improvement welcome.</p>
<p>TIA</p>
http://stackoverflow.com/questions/1165851/object-oriented-design-with-ruby3Object Oriented Design with Rubymikeycgto2009-07-22T14:50:14Z2009-07-22T16:01:58Z
<p>What are some of the best practices for OOD with Ruby? Mainly, how should files and code be organized?</p>
<p>I have a project that uses several classes and files and I am just wondering how it should all be organized, grouped and included.</p>
http://stackoverflow.com/questions/1078838/oop-choosing-objects9OOP. Choosing objectsAndy W2009-07-03T10:56:46Z2009-07-03T16:13:29Z
<p>I'm a relative newbie to thinking in OOP terms, and haven't yet found my ‘gut instinct’ as to the right way to do it. As an exercise I'm trying to figure out where you'd create the line between different types of objects, using the drinks on my desk as an example.</p>
<p>Assuming I create an object <code>Drink</code>, that has attributes like <code>volume</code> and <code>temperature</code>, and methods like <code>pour()</code> and <code>drink()</code>, I'm struggling to see where specific drink 'types' come in.</p>
<p>Say I have a drink types of <code>Tea</code>, <code>Coffee</code> or <code>Juice</code>, my first instinct is to sub-class <code>Drink</code> as they have attributes and methods in common.</p>
<p>The problem then becomes both <code>Tea</code> and <code>Coffee</code> have attributes like <code>sugars</code> and <code>milk</code>, but <code>Juice</code> doesn't, whereas all three have a <code>variant</code> (Earl Grey, decaff and orange respectively).</p>
<p>Similarly, <code>Tea</code> and <code>Coffee</code> have an <code>addSugar()</code> method, whereas that makes no sense for a <code>Juice</code> object.</p>
<p>So does that mean the super-class should have those attributes and methods, even if all the sub-classes don't need them, or do I define them on the sub-classes, especially for attributes like <code>variant</code>, where each sub-class has it's own list of valid values?</p>
<p>But then I end up with two <code>addSugar()</code> methods, on the <code>Tea</code> and <code>Coffee</code> sub-classes.</p>
<p>Or given that I then end up putting all the attributes and methods on the super-class, as most are shared between at least a couple of the drink types, I wonder what was the point in sub-classing at all?</p>
<p>I fear I am just trying to abstract too much, but don't want to back myself in to a corner should I want to add a new type, such as <code>Water</code>—with <code>variant</code> still or sparkling—down the road.</p>
http://stackoverflow.com/questions/1066448/persisting-the-fact-that-a-tree-has-apples0Persisting the fact that a Tree has ApplesDewayne2009-06-30T22:37:43Z2009-07-01T01:15:17Z
<p>If I have a Tree that has Apples, how should I model the fact that the Apples are had by Tree. Consider that there would be 3 database tables: tree, apple, tree_apples. </p>
<p>It seems to me that there would be a AppleDecorator class so that Tree can have multiple AppleDecorators and call ->save() for each one which would write the association to tree_apples. Apple does not know that it is owned by Tree.</p>
<p>It seems wrong to make references to the tree_apples table from the Tree class other than getting the ids of all trees because then the Tree class is referencing one table for each type of object that it has (and needs to store the fact that it has one). Even getting the Ids could be offloaded into something like an Iterator.</p>
<p>How should the situation where an application needs to store the fact that an object owns N other objects? (In this case my class needs to store associations for 5 other types of objects).</p>
http://stackoverflow.com/questions/973047/enforce-service-layer-business-rules-on-entity-property-changes-or-hide-entity-p1Enforce service layer business rules on entity property changes, or hide entity property from clients but not service?Boden2009-06-09T23:40:36Z2009-06-10T10:03:37Z
<p>Let's say I have a class Customer, which has a property customerType.</p>
<p>I have another class called something like SpecialContract, which has a Customer and some other properties.</p>
<p>If customer.customerType == SPECIAL, then there is a SpecialContract which has a reference to this particular Customer.</p>
<p>Now I realize that this is a bit hoaky, but I do not want to maintain a relationship from Customer <strong>to</strong> SpecialContract for a few reasons, one being that most of the time when working with Customers we don't need to load up SpecialContracts and all of the other data associated with SpecialContracts. However, I do always want to know if a Customer has a SpecialContract, and this is achieved through its customerType property.</p>
<p>Ok, here's the hard part. I don't want the client to be able to set customerType, because just doing so will not remove the SpecialContract that applies to the Customer, which would be required. I would rather force the client to call a service method to remove the SpecialContract, which would also set the customerType to NOTSPECIAL all in one transaction.</p>
<p>How can I hide the customerType setter from clients, but still expose it to my service layer class that will be responsible for setting the correct value and also removing the SpecialContract? My service class is not in the same package as the Customer class.</p>
http://stackoverflow.com/questions/969519/object-relationships2Object relationshipsGal2009-06-09T11:34:59Z2009-06-09T12:07:00Z
<p>Suppose you have two objects, Person and Address and they have a relationship, that is a Person has an address. Obviously the person object has a reference to the address object but does the address object really have to know about the Person object? What gives that it has to be a two way relationship? </p>
<p>Thanks!</p>