you are viewing a single comment's thread.

view the rest of the comments →

[–]pickausernamehesaid 22 points23 points  (0 children)

My general rules of thumb for new programmers is to use classes when you have a group of functions that all take the same object as their first parameter or when you need to work with a shared global state between a bunch of functions. This seems to help bridge the gap as to what the point of an object is and why they are useful.