Tagged Questions
The object-oriented-analysis tag has no wiki summary.
12
votes
4answers
275 views
Software Design Website(s)
What websites (not books) document designs (UML or otherwise) for software applications?
Building architects have many resources available for inspiration and construction. I do not seek resources on ...
8
votes
9answers
515 views
Class methods vs instance methods
Hi Are class methods generally measured to be faster than instance methods since it doesn't require loading an instance? If so, should we use class methods when possible?
Thanks
7
votes
5answers
155 views
Is This Use of the “instanceof” Operator Considered Bad Design?
In one of my projects, I have two "data transfer objects" RecordType1 and RecordType2 that inherit from an abstract class of RecordType.
I want both RecordType objects to be processed by the same ...
6
votes
2answers
116 views
Java Interface Inheritence and Extending
Imagine you are working on a mature product and a new search feature is requested that is required for 50% of your product. Now assuming you have an established interface inheritance relationship ...
4
votes
3answers
130 views
“Hello World” in MVC Pattern
In an interview for some company, I was asked this question.
What design patterns do you know...then I was told to write simplest "hello world" application based on MVC Design Pattern.
I came up ...
4
votes
6answers
436 views
Is behaviour driven development about design or analysis?
The more I read about BDD and how it is supposed to be improved TDD the more confusing it all seems to me. I've found quotes from expert that say it's about design, but also from other experts that ...
3
votes
1answer
45 views
classes design in OOA
We want to apply OO to design a process of taking an exam and getting the result.
There are two different opinions:
there are 2 objects: questionnaire and algorithm. questionnaire is storing ...
2
votes
2answers
74 views
Wisdom says “don't use globals”. And yet, thy singletons be globals
A global is a piece of data that is accessible in every context by name. A class is a piece of data that is generally accessible in every context by name, as well. A singleton class, in which the only ...
2
votes
1answer
82 views
What OO structure should I use to describe animal's behaviors?
I have a Java assignment in which my professor requires me to use a LeJOS NXT to make a robot that simulates a certain animal's behaviors. I chose to develop a dragon. All the possible behaviors that ...
2
votes
2answers
123 views
Object oriented design
I have two csv files A and B. A is the master repository. I need to read those files, map the records of B to A and save the mapped records to another file.
The class to hold records is, say Record. ...
1
vote
0answers
63 views
Object Oriented Design: Nested Compositions [migrated]
I came across the following question on a website for interviews: Here are 3 products table,chair and bench. Product can be of material wood ,metal and plastic . Design class structures for this.
My ...
1
vote
1answer
33 views
Examples of balancing distribution of class responsibilities in object-oriented model
In "The Unified Modelling Language User's Guide" by Bochs et. al. there is in 'Chapter 4. Classes' there (sub)section titled "Modeling the Distribution of Responsibilities in a System". It talks ...
1
vote
2answers
104 views
Design pattern - validate input params & create holder class, J2SE (no frameworks, etc.)
Scenario: We receive a couple of input parameters regarding an object, for ex Course
Course has instructor name, number of students, course time, room no, etc.
We need to validate (number of ...
1
vote
2answers
284 views
Head First Design Patterns vs Head First Object Oriented Analysis and Design [closed]
Currently I am in the process of learning Java via Head First Java and am beginning to look ahead at reading more about OOP / design patterns.
My question is which book I should pursue after Head ...
1
vote
7answers
110 views
What design pattern to use when I want only some derived classes to have access to a method in base class?
I have a unique problem/situation here. Trying to make it as simple as possible. I have a base class (say Parent) and a whole bunch of derived classes (say Child1, Child2 ..ChildN) directly deriving ...
1
vote
3answers
57 views
Tools for visualizing, understanding how your classes relate to one another
At times I find myself struggling to navigate the object landscape of a large, legacy system having 100+ classes.
This seems like a fairly common challenge.
I'm just curious if there are any highly ...
0
votes
5answers
117 views
give the object oriented design for sudoku
This is Interview Question.
I answered that I will have have 2d Array.
And then I will have 3 functions one to check the horizontal condition.
another function to check vertical condition. and ...
0
votes
2answers
194 views
Is this class diagram correct according to this use case diagram?
I am trying to create a class diagram which shows generalisation and maybe some form of aggregation or composition from this use case diagram. The intended system is to be a site/application similar ...
0
votes
3answers
31 views
Superclass has subclass reference
I have a situation where I have to put getters and setters for a sublass reference in superclass. I just need to know whether its a good practice or not?
I have given the code below.
public class ...
0
votes
1answer
48 views
subtyping relationships in OO paradigm
Let us consider a class 'Human' -->(1..*) 'Human' , where Human is a supertype. Say it has subclasses like 'Male', 'Female', 'SociallyPathologicalMale' etc. The basic association b/w 2 entities ...
0
votes
2answers
96 views
How to Store a list of Design-Time data
I have the following structure in my data:
Category0
-SubCategory0
-SubCategory1
-SubCategoryN
Category1
-SubCategory1_0
-SubCategory1_1
-SubCategory1_N
A category will have a ...
0
votes
1answer
48 views
what is the common practice on doing oo in db?
Here is situation.... ...
I have a DBManager, which is implement a DBInterface, in the DBInterface, I got 4 method:
-create(DBCmd);
-read(DBCmd);
-update(DBCmd);
-delete(DBCmd);
The DBCmd object ...
0
votes
1answer
113 views
class diagram in OO programming with API
I am trying to create a class diagram for an application that I am
trying to create within a given framework.
This framework exposes
its own custom API and some of the classes in my design is
...
0
votes
4answers
99 views
Is there any use of making an array final (immutable) in Java?
Is there any reason why one would declare a array final?
say something like this
final int[] array={1,2,33,21,11};
-1
votes
2answers
115 views
Object Oriented Analysis & Design [closed]
I'm looking for a video tutorial/training or even lectures on Object Oriented Analysis & Design.
I don't need explanation for UML and Use cases. I want a full software life cycle explained.
I ...
-1
votes
1answer
50 views
Can u please suggest class structure for well known Mars rover application [closed]
I hope many of you might have heard about well knows "mars rover problem" if not then please check here http://thefundoowriter.com/2009/10/01/the-mars-rover-problem/ I am working on this but i am not ...