as a general rule you don't want to be directly accessing and changing variables of your classes anyways. You should make getter/setter functions like getRadius() and setRadius(float r) instead. Pointers are fine but creating a default constructor and avoiding having to deal with dynamic memory allocation can prevent issues during runtime.
http://www.cplusplus.com/doc/tutorial/dynamic/
↧
Sharing variables between classes
↧