Search Results

0
votes
8answers
706 views

Why might one also use a blank constructor?

I was reading some Java recently and came across something (an idiom?) new to me: in the program, classes with multiple constructors would also always include a blank constructor. For example: …
1
vote
2answers
131 views

Handling graphics in OOP style

Hi In an object-oriented programming style does how does one tend to handle graphics? Should each object contain its own graphics information? How does that information get displayed? …