In OOP, there are entities (e.g. Person) which has attributes (e.g. name, address, etc) and it has methods. How do you describe new? Is it a method or just special token to bring an abstract entity to real one?
|
|
||||
|
Depending on the language
For brand new students I would describe You may want to checkout my question: How to teach object oriented programming to procedural programmers for other great answers on teaching OOP to new developers. |
||||
|
|
Sometimes it's a method, sometimes it's just syntactic sugar that invokes an allocator method. The language matters. |
|||
|
|
|
To your CS student? Don't sugar-coat it, they need to be able to get their heads around the concepts pretty quickly and using metaphors unrelated to the computer field, while fine for trying to explain it to your 80-year-old grandmother, will not help out a CS student much. Simply put, tell them that a class is a specification for something and that an object is a concrete instance of that something. All |
|||
|
|
|
In most object-oriented languages, In Ruby, for example, it is conventional to name the factory method In Smalltalk, factory methods often have more descriptive names than just |
|||
|
|
|
Here's a simile that has worked for me in the past. An object definition is a Jello Mold. "new" is the process that actually makes a Jello snack from that mold. Each Goopy Jello thing that you give to your new neighbors can be different, this one's green, this one has bits of fruit in it, etc. It's its own unique "object." But the mold is the same. Or you can use a factory analogy or something, (or blueprints vs building). As far as its role in the syntax, it's just a keyword that lets the compiler know the allocate memory on the heap and run the constructor. There's not much more to it. |
|||
|
|
|
Smalltalk: it's an instance method on the metaclass. So "new is a method that returns a newly-allocated instance." |
|||
|
|
|
I tell people that a class is like a plan on how to make an object. An object is made from the class by |
|||||
|
|
str is defined as being a String class variable using the constructor and argument "asdf" At least that's how it was presented to me. |
|||
|
|
|
In Ruby, I believe it's a instance method on the metaclass. In CLOS it's a generic function called In some languages, like Java, |
|||
|
|
|
You can say that a class is a prototype/blueprint for an object. When you give it the keyword new, that prototype/blueprint comes to life. It's like you're giving a breath of life to those dead instance. |
|||
|
|
|
In Java,
As far as the relationship between object/instance and class, I sometimes think: class is to instance as blueprint is to building |
|||||||
|
|
|
|||
|
|
newas a part of OOP, instead I would give a brief explanation about memory management in general until you reach there! to the heap! – AraK Oct 29 '10 at 6:19