Java compilation Error: no suitable constructor found for Box(int)

I spent a lot of time trying to figure out why my Java program was giving me a compilation error on the Box constructor that said Error: no suitable constructor found for Box(int). My attempt was to simply use the Box class in the Swing Library. I figured out why. It so happens that in … Continue reading Java compilation Error: no suitable constructor found for Box(int)

Simplest explanation to Objects in Object Oriented Programming

Teaching myself to program in Java by following the book Head First Java by Kathy Sierra and Bert Bates has been one of the best things to have happened this year, so far. After trying several years to understand object-oriented programming concepts, finally found this book that provides one of the best introductions. Finally, I … Continue reading Simplest explanation to Objects in Object Oriented Programming