SportinStyle;10882700 wrote:
Perhaps the real question is, is it worth using or is standard coding procedure just as fast?
OOP is definately worth learning and using. While you can get away with not using it, it has advantages. If you need to create a bunch of related variables (properties) and functions (methods), it's much more organized. Some properties and methods can be private, meaning that there is a strict way of controlling how some things are created (which is great if you want fine control). Plus with contructors and destructors, you can have automated behaviors. Plus you can extend classes (child classes that inherit their parent classes properties and methods). While on the surface, it seems like a hassle, I think it's worse doing all those kind of things procedurally.
Overall, it's far more flexable than procedural systems. I think once you get the hang of it, you'll see the advantages are apparent.
Definately go for it 😃
Cheers,
NRG