Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
Vector Class
What is the Vector class? The Vector class provides the capability to implement a growable array of objects 2007-03-03, 4680👍, 0💬
Inner Class Declared inside a Method
Can an inner class declared inside of a method access local variables of this method? It's possible if these variables are final. 2007-03-03, 4731👍, 0💬
States of a Thread
What are the high-level thread states? The high-level thread states are ready, running, waiting, and dead. 2007-03-03, 6266👍, 0💬
List of Waiting Threads on an Object
Can each Java object keep track of all the threads that want to exclusively access to it? 2007-03-03, 6939👍, 0💬
What Is Thread
What is thread? A thread is an independent path of execution in a system. 2007-03-03, 7607👍, 0💬
J2SDK 1.5 and J2SDK 5.0
What's the difference between J2SDK 1.5 and J2SDK 5.0? There is no difference, Sun Microsystems just re-branded this version. 2007-03-03, 6724👍, 0💬
Acquiring Locks on Classes
Can a lock be acquired on a class? Yes, a lock can be acquired on a class. This lock is acquired on the class's Class object. 2007-03-03, 5271👍, 0💬
Popular Posts:
How can I enable session tracking for JSP pages if the browser has disabled cookies? We know that se...
Can one change the mouse pointer in Forms? The SET_APPLICATION_PROPERTY build-in in Oracle Forms all...
What would you use to compare two String variables - the operator == or the method equals()? You can...
The following variable is available in file1.c, who can access it? static int average; Answer: all t...
How To Compare Two Strings with strcmp()? - PHP Script Tips - PHP Built-in Functions for Strings PHP...