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:
Explain the usage of the keyword transient?
Explain the usage of the keyword transient?
✍: Guest
This keyword indicates that the value of this member variable does not have to be serialized with the object. When the class will be de-serialized, this variable will be initialized with a default value of its data type (i.e. zero for integers).
2012-07-31, 2645👍, 0💬
Popular Posts:
Can JavaScript steal text from your clipboard? It is true, text you last copied for pasting (copy &a...
How do you locate the first X in a string txt? A) txt.find('X'); B) txt.locate('X'); C) txt.indexOf(...
What are the two kinds of comments in JSP and what's the difference between them? <%-- JSP Co...
What is continuous and staged representation? CMMI contains 25 key process areas which organization ...
WHat will be the result of the following code? #define TRUE 0 // some code while (TRUE) { // some co...