Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What happens to the static fields of a class during serialization?
What happens to the static fields of a class during serialization?
✍: Guest
There are three exceptions in which serialization doesnot necessarily read and write to the stream. These are
1. Serialization ignores static fields, because they are not part of ay particular state state.
2. Base class fields are only hendled if the base class itself is serializable.
3. Transient fields.
2013-05-23, 2300👍, 0💬
Popular Posts:
How To Return the Second 5 Rows? - MySQL FAQs - SQL SELECT Statements with JOIN and Subqueries If yo...
What print out will the folloging code produce? main() { char *p1=“name”; char *p2; p2=(char*)malloc...
How do you handle change request? Normally change request are handled by preparing an Impact analysi...
What Is C Language? The C programming language is a standardized programming language developed in t...
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...