1
vote
Recommendations for how to do OOP design
use Object Oriented Design Principles (http://www.surfscranton.com/Architecture/ObjectOrientedDe …
0
votes
Best way to learn .NET/OOP best practices?
i would recommend uncle bob's book: http://www.amazon.com/Software-Development-Principles-Patterns-Practices/dp/01359744 …
2
votes
That A-Ha Moment for Understanding OO Design in C#
as a previous poster mentioned, do check out design patterns.
also, i found uncle bob's stuff useful as a student as well as an instructor, in particular some of the oo design principles: …
1
vote
Defining OOP for a new programmer.
its as easy as pie spelled backwards. the 3 basic principles of oo are:
encapsulation
inheritance
polymorphism
show the newbie the code for the standard draw shapes example that is …
0
votes
How can I model complex role relationships where only certain groups of entities can take part in a role?
seems like you meal can be almost any collection of food items, so start with one abstract base class (or interface) for a Food. make lots of concrete subclasses, one for each food: coke, tea, stea …
0
votes
How to organize my classes?
consider making category an enum (photo can have a set of categories). consider an album class. allow a photo to be in many albums. use the mvc mini-architecture. take a look at picasa.
…
1
vote
How to explain an object?
objects (usually) have state, behaviour, and identity.
basic o-o programming principles are encapsulation, inheritance, and polymorphism.
basic o-o design principles are here: …
0
votes
Is the function of interfaces primarily for using functions without knowing how a class is built?
an interface reduces what the client is dependent on (http://en.wikipedia.org/wiki/Dependency_inversion_principl …
