transient

suggest change

A variable which is declared as transient will not be serialized during object serialization.

public transient int limit = 55;   // will not persist
public int b; // will persist

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents