1
vote
3answers
24 views
Function/Class Design Guidelines
I asked a fellow colleague yesterday if a function has too many parameters whether it would be better to create a class with properties instead. Are there any guidelines that I can …
3
votes
5answers
105 views
I need to search for a “customer” in a db, what would be a good design here?
Hi!
We're a couple of students trying to implement a design to search for customer-information in a database. When the GUI-class is asking for any customer with the surname "Jensen …
1
vote
6answers
95 views
References vs information hiding C++
Hi,
I need suggestions on how to solve the type of problems described below. I'm fairly new at C++ and OO-design.
I've learnt:
Pointers shall be avoided when ever they can be …
1
vote
4answers
177 views
How to declare factory-like method in base class?
I'm looking for solution of C++ class design problem. What I'm trying to achieve is having static method method in base class, which would return instances of objects of descendant …
3
votes
4answers
223 views
Should a business object collection inherit from Collection<T> when it doesn’t extend it?
I have a business object collection (representing data from the database) that inherits from Collection and has a static method that calls a stored proc and then populates its prop …
0
votes
1answer
67 views
How would you design OO classes to handle cryptosystems and their keys
This a wider question than my previous one but related.
I want to implement oldish crypto systems in Ruby such as ADFGVX, VIC cipher and others, mostly for fun. These cryptosyste …
