Answer Posted / shrikant kale
I think the answer to this is very interesting.
For one, I believe that in Java all objects are on the
heap, and while you don't have pointers, you do
have "References". References have copy symantics and java
internally keeps track of reference counts so that it's
garbage collector knows whats safe to get rid of.
Since you only access objects through copyable references,
the actual number of times you need to copy an object is
greatly reduced (for example, in C++ just passing an object
to a function (by value) results in new objects being copy
constructed, in Java only the reference to the object is
passed). The designers probably figured that clone() would
be enough for the remaining uses.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the differences between new and malloc?
What are "pure virtual" functions?
What is a forward referencing and when should it be used?
Can we provide one default constructor for our class?
If you don’t declare a return value, what type of return value is assumed?
What is the use of register keyword with the variables?
Does improper inheritance have a potential to wreck a project?
Is c++ a dying language?
Will c++ be replaced?
Why do we need oop?
What is virtual base class?
Can you overload the operator+ for short integers?
What is polymorphism in oops with example?
What is singleton pattern in c++?
What is interface in oop?