How Array List can be Serialized.

Answers were Sorted based on User's Feedback



How Array List can be Serialized...

Answer / tirupathi rao

By Default all the Collection classes are serialized.And
Serializable is not a class its an Interface.

Is This Answer Correct ?    42 Yes 4 No

How Array List can be Serialized...

Answer / ysr

Array list implements Cloneable, Collection, List,
RandomAccess, Serializable
Interfaces. So no need to implement the serialized
interface.

Is This Answer Correct ?    21 Yes 1 No

How Array List can be Serialized...

Answer / srinu

Arraylist are already implent serializible interface.

Is This Answer Correct ?    14 Yes 0 No

How Array List can be Serialized...

Answer / javachi

To have serialized array list, we need to implement the serializable interface.

Is This Answer Correct ?    6 Yes 6 No

How Array List can be Serialized...

Answer / rishi

by serialized interface

Is This Answer Correct ?    4 Yes 6 No

How Array List can be Serialized...

Answer / dhaval

there is a method dont remember the name perfectly
though......Collections.synchronizedList(myList)

ArrayList myList = new ArrayList();

Collections.synchronizedList(myList)

Is This Answer Correct ?    7 Yes 14 No

How Array List can be Serialized...

Answer / kumaraswamy18

It is done by extending Serializiable class

Is This Answer Correct ?    9 Yes 40 No

Post New Answer

More Core Java Interview Questions

Ducking is automatic in checked exception?True or false

2 Answers  


What is fail first in java?

0 Answers  


What is the vector class in java programming?

0 Answers  


who can we create the object of a class? in how many ways we can create it (max 5)

2 Answers  


What is tochararray in java?

0 Answers  






Difference between arraylist and hashset in java?

0 Answers  


Difference between nested and inner classes ?

0 Answers  


what is meaning of JIT?

4 Answers  


What is string builder?

0 Answers  


I have a Person object with 5 variables and I want to store them in a file called Person.txt. What should I do?

3 Answers   KPIT,


What are Encapsulation, Polymorphism and Inheritance?

5 Answers  


What does int [] mean in java?

0 Answers  


Categories