Search Results

0
votes

Main concepts in OOP

This [article][1] refers to the three pillars of good code. I found it to be an excellent article positing that encapsulation is the "first principle" of object-oriented design. "First" …
0
votes

Advice for transitioning to object orient programming from VB 6 ‘style’

I was in your shoes a few years back. I remember reading an article that estimated you would spend anywhere from 6 months to a year just reading about object-oriented development before you would …
2
votes

OOP approach for inventory system

You sort of answered your own question. Check out the State pattern. …