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 a layout manager?

1 Answers  


what is a thread?

13 Answers   IBM, SunGard,


What are the three parts of a lambda expression? What is the type of lambda expression?

0 Answers  


What is garbage collection? Can it be forced to run?

0 Answers   Global Logic,


What are three types of loops in java?

0 Answers  


How do you classify Dialog Box?

0 Answers   CGI,


What is substring in java?

0 Answers  


When do you create an index?

0 Answers  


Which one will take more memory: an int or integer?

0 Answers  


How can you handle java exceptions?

0 Answers  


Which collection is thread safe in java?

0 Answers  


how system.out.println() works?

2 Answers  


Categories