Categories:
.NET (357)
C (330)
C++ (184)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (2)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is a transient variable?
What is a transient variable?
✍: Guest
A transient variable is a variable that may not be serialized. If you don't want some field to be serialized, you can mark that field transient or static.
2012-05-30, 2953👍, 0💬
Popular Posts:
How do you open an SSH connection to a remote box? ????
What's wrong with this initialization? char *p = malloc(10); My compiler is complaining about an ``i...
How Many Tags Are Defined in HTML 4.01? There are 77 tags defined in HTML 4.01: a abbr acronym addre...
What are the high-level thread states? The high-level thread states are ready, running, waiting, and...
What is the benefit of using an enum rather than a #define constant? The use of an enumeration const...