I have 2 objects inside one object(vector). how can i
serialize one of them. I dont want to serialize the second one

Answers were Sorted based on User's Feedback



I have 2 objects inside one object(vector). how can i serialize one of them. I dont want to serial..

Answer / atre sachin

suppose we are storing the two object of class A in Vector v1

class A implements serialiazable{
....
}

A a1=new A() //this will be the persist
transient A a2 =new A() //this will not persist because of the transient keyword.

now if I store the both a1 and a2 object in the vector v1 then we can achieve the goal given.
:-)

Is This Answer Correct ?    10 Yes 3 No

I have 2 objects inside one object(vector). how can i serialize one of them. I dont want to serial..

Answer / saroj kumar biswal

this answer is not correct. bcz java compiler will throw an error-illegal declaration of statement.check it out.

I think we will go for Externalizable interface. But the problem is how write the code inside writeExternal() & readExternal() methods

Is This Answer Correct ?    0 Yes 0 No

I have 2 objects inside one object(vector). how can i serialize one of them. I dont want to serial..

Answer / priya

yes we are able to done the above question by using
transient keyword

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Core Java Interview Questions

What is natural ordering in java?

0 Answers  


What is an object in java?

0 Answers  


If there is no implementation of MARKER INTERFACE in java. Then how compiler come to know about specification.

2 Answers  


What is concurrent hashmap and its features?

0 Answers  


Define iterator and methods in iterator?

0 Answers  






What is “try and catch” in java

2 Answers  


What is bubble sorting in java?

0 Answers  


What is size of int in java?

0 Answers  


What is the difference between static synchronize() metod and synchronize() method?

1 Answers   Polaris,


What is another word for methodology?

0 Answers  


Can list have duplicates in java?

0 Answers  


where to use join method and explain with real time senario?and programatical explenation also..

1 Answers   TCS,


Categories