Every class extends object but why it is not possible for
every object to invoke clone() method. ideally protected
methods should be accessible from sub classes. isn't it?

Answers were Sorted based on User's Feedback



Every class extends object but why it is not possible for every object to invoke clone() method. i..

Answer / aslam

Since the method is protected we can access clone method
only within the package or from subclasses outside the
package.

for ex:
class A{
public static void main(String arg[]){
new A().clone();
/* This is legal since class A is a subclass of Object and
we r accessing within the subclass*/

}
}

class B{
public static void main(String arg[]){
new A().clone();
/* Illegal since we r accessing it from outside object */
}
}

Is This Answer Correct ?    5 Yes 1 No

Every class extends object but why it is not possible for every object to invoke clone() method. i..

Answer / surendrababu koppula

clone() method must be called on only cloneable objects so sub class must implement Cloneable marker interface

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More Core Java Interview Questions

What are batch updates. in jdbc

2 Answers   Corent Technology,


What are disadvantages of java?

0 Answers  


What is Vector?Can you elaborate how Vector is Thread safe?

3 Answers   HCL,


How does singleton class work?

0 Answers  


How do I compare two strings in word in java?

0 Answers  


Are registers volatile?

0 Answers  


Does java map allow duplicates?

0 Answers  


What is the return type of the main method?

0 Answers  


What is the effect of keeping a constructor private?

0 Answers  


Which package is used for pattern matching with regular expressions?

0 Answers  


When do you get classcastexception?

0 Answers  


Where is java located?

0 Answers  


Categories