Hi budy can you explain anyone which i have writen in the article title
kathir100 0 Newbie Poster
Recommended Answers
Jump to PostString str = "asd";
The String: "asd" is referred to by the object reference variable: str.
Jump to Postwhich basically means that "asd" is stored somewhere in your memory.
if you then perform:
str = "new asd";this doesn't mean that the object "asd" doesn't exist anymore, but you don't have a reference to it anymore. now str will be a reference to "new asd" while "asd" remains …
All 5 Replies
NormR1 563 Posting Sage Team Colleague
stultuske 1,116 Posting Maven Featured Poster
bibiki 18 Posting Whiz
NormR1 563 Posting Sage Team Colleague
JamesCherrill 4,733 Most Valuable Poster Team Colleague Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.