Jump to content

Copy a string: Difference between revisions

m
m (Spelling/grammar/aesthetics and removed an extra category tag)
Line 156:
 
=={{header|Java}}==
In Java, Strings are immutable, so it doesn't make that much difference to copy it.
String src = "Hello";
String newAlias = src;
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.