Just starting out with OOP in PHP and in general. From what I have been reading so far the two seem to be synonyms. Is this the case, and if not, practically speaking when people refer to objects and classes do they generally use the terms interchangeably?
|
|
Typically one would refer to an object as an instance of a class. So you have some class
And you declare an instance of it like:
So to answer your question - a class is not an object. You create an object when you instantiate a class. |
|||||||||||
|
No. As in other OOP languages, classes are like the blueprints for something, say a house. Objects are the actual house after it's built. Very different things indeed.
|
|||||
|
|
They're certainly not synonymous, and if you've been reading that, it's time to change the book! :-) Classes are types, while objects are instances. A simple example is an integer. "Integer" denotes the type, but an integer With classes, you cannot just say |
|||
|
|
|
A class is a definition of an object. An object is an instance of a class. For example:
...is a class. You might say "The Parser class can be used to parse text."
Now, This is particularly important with the
|
|||
|
|
|
You can remove the in php from your question and it is still the same thing. A class defines an Object for example
is a class that defines an person object. The distinction get more important when you start creating class methods and object methods
is an object method in php you could do something like this
now you can have something like
now that is an class method it affects all objects of the same class that way
Now if my php isn't that rusty then it should echo 1. That is because all objects in the class are affected In ruby it would look as follows
Similar and same concepts apply |
|||
|
|