5
votes
7answers
124 views
When to use a property vs a method?
Is there any rule or general best practice as to when to use a property vs a method? Technically any parameterless method can be made in a property and any property can be made a method, but sometimes …
0
votes
5answers
93 views
How to implement class composition in C++?
If I understand correctly we have at least 2 different ways of implementing composition. (Implementation with smart pointers is excluded case for simplicity. I don't use STL almost and have no desire …
3
votes
6answers
98 views
Is it bad practice to have a class that requires a reference to the instantiating object?
I saw this in someone's code and thought wow, that's an elegant way to solve this particular problem, but it probably violates good OO principles in an epic way.
In the constructor for a set of …
1
vote
4answers
70 views
Calling a Child class’ method when processing a list of Parent class objects
This question seems like it might be somewhat common, but I didn't find anything when scowering StackOverflow or the interwebs.
I came across a method in a C++ class that takes a list of (for …
1
vote
10answers
245 views
C# using the “this” keyword in this situation?
Hi,
I've completed a OOP course assignment where I design and code a Complex Number class. For extra credit, I can do the following:
Add two complex numbers. The function will take one complex …
0
votes
4answers
129 views
Refactoring a method containing conditional with extremely different code blocks that are the same ;)
So I have this stinky method, the two conditional blocks do almost the exact same thing, but with radically different parameters (at least in my eyes). I want to clean it Uncle Bob style, but can't …
1
vote
7answers
176 views
Java: Static Class?
I have a class full of utility functions. Instantiating an instance of it makes no semantic sense, but I still want to call its methods. What is the best way to deal with this? Static class? Abstract?
…
1
vote
1answer
56 views
Hibernate OO Design Question
I'm working on creating a Hibernate query engine that can create dynamic queries. Thus far I've been using the Criterion API to generate the queries. I'm having a hard time writing the engine in an …
1
vote
4answers
69 views
c++ / object-oriented quick review?
I am looking for quick reference guide(s) for both OO and C++. I have a few technical interviews coming up and I just want a quick reference that gives the basic overview of the fundamentals. (Nothing …
1
vote
3answers
53 views
Is authentication a concern of my domain or of my application?
I'm trying to design the authentication of my web application in an object oriented manner. Is this a concern of my domain in which case I would have something like this:
…
2
votes
6answers
114 views
.NET Project Architecture
Hi, I have sort of a philosophical question, which also need to consider the performance impact.
We are designing a new system with many sub-services that are not related to each other, yet, some may …
3
votes
7answers
218 views
How not to implement a function of an interface in class?
An interviewer asked me the following question in interview, but I don't know what could be the answer of this question, please help!!!
What must be done if i don't want to
implement a function …
0
votes
2answers
34 views
.NET Airplane Simulator
Use Case Name: Start airplane simulation
Scope: Airplane Flight Simulator
Level: User goal
Primary Actor: User
User starts Airplane simulator
Ask the user for a maximum height(ceiling)
Ask the …
0
votes
3answers
55 views
Is there a such thing as a routing pattern for websites?
I didn't find any info on searches when I looked this up. I've been doing a lot of research on design patterns but I haven't seen anything as far as routing goes. What I mean is this: back in my php …
0
votes
3answers
88 views
C# using desicion logic to meet these requirements?
I've made a program for my OOP class that does the following:
Defines a class to represent complex numbers
Uses a constructor to initialize a Complex Number object
passes and returns complex number …
