Problem I really need a review on the structure, and how things are done. I want to improve. Command.class: <?php […]
Tag: object-oriented
Directory Organizer: Organizing a given directory by moving files into categories according to their type
Problem My Windows desktop is messy with many files of different types here and there, therefore I thought of writing […]
Merit of a “Search” class similar to a “Builder” class
Problem I have a class something like the following: class ItemManager { List<Item> items; public ItemManager() { items = Database.retrieveItems(); […]
Student Classroom class
Problem I’d like to know if the following class design is good or bad: #include <iostream> #include <vector> #include <string> […]
Automated Java fighting and battling simulation
Problem This is my second post since I’ve started coding/joined this site so be ready for some bad code and […]
Java OOP Hangman
Problem Last time we posted here we were overwhelmed by the useful feedback. We’ve had another go at OOP/programming – […]
Finding the lowest and highest values in an array… with “Poor Man’s DI”
Problem I am practicing my object oriented knowledge, so I created a very simple program that determines which is the […]
Frogger HTML5 JavaScript Canvas Game using Object Oriented Design
Problem I created a Frogger game using JavaScript and HTML5. The game runs fine, but that might be because the […]
OOP PHP form builder with validation
Problem Yes, another PHP form builder… I wrote this solely to demonstrate OOP principles. My questions are: Could this be […]
Is this following Separation of Concerns and PHP OOP standards?
Problem I’ve been working with PHP for a while now, but unfortunately haven’t delved into the OO side of it […]