Q&A
Ask and answer questions to make information more available to wider audiences.
Nicholas Deen @nicholasdeen143   21, Mar 2023 12:00 AM
Difference between a class and an object
What's the difference between a class and an object?
answers 3
 
Answer 1
Jeremy Temples @templesjeremy   21, Mar 2023 11:59 PM
Class describes all the methods, properties, etc. An object is used to access all those properties from the class.

 
Answer 2
Josiah Jaxey @josiahjaxey   21, Mar 2023 11:55 PM
Class is a template of the object. A class does not become an object unless instantiated
 
Answer 3
Colton Holybees @coltonholybees   21, Mar 2023 11:52 PM
Class is the definition of an object. An object is an instance of a class.