devaiah

Greenhorn
+ Follow
since Jan 11, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by devaiah

Do you mean like this..

String str = "HELLO";
It create one memory location for str variable and one "HELLO" String in stringPool.

where as String Str1="H"+"E"+"L"+"L"+"0";

for str1..its create 1 memory location and string pool contain different strings
like H,E,L,O, and HE,HEL,HELL,HELLO ?..

please tell me wether my understanding is correct or not?..

&

what is the difference of Str1="H"+"E"+"L"+"L"+"0";
and
Str1="H";
Str1 = Str1+"E";
Str1 = Str1+"L";
Str1 = Str1+"L";
Str1 = Str1+"O";

??
18 years ago
hi folks,
i know DTD,CSS,XSL ans SCHEMA'S but i dont know where these will apply..be cos these seems to be individul.
i want where xml using and how they are using ..what is the xml liknk with java. where exactly..
i mean one complete life cycle of xml.
regards
deva