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:
Is String a primitive data type in Java?
Is String a primitive data type in Java?
✍: Guest
No String is not a primitive data type in Java, even though it is one of the most extensively used object. Strings in Java are instances of String class defined in java.lang package.
2013-06-25, 2460👍, 0💬
Popular Posts:
What is the method to customize columns in DataGrid? Use the template column.
How can I execute a PHP script using command line? Just run the PHP CLI (Command Line Interface) pro...
Can Two Forms Be Nested? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields Can two forms ...
Which one of the following statements is TRUE in regard to overloading the ++ operator? 1 You cannot...
What will happen in these three cases? if (a=0) { //somecode } if (a==0) { //do something } if (a===...