When does the toUpperCase() method create a new object?











up vote
11
down vote

favorite
1












public class Child{

public static void main(String args){
String x = new String("ABC");
String y = x.toUpperCase();

System.out.println(x == y);
}
}


Output: true



So does toUpperCase() always create a new object?










share|improve this question




















  • 2




    I wouldn't rely on this behaviour but I would expect it to avoid creating a new object.
    – Peter Lawrey
    yesterday










  • Note: new String(...) doesn't change the answer.
    – Peter Lawrey
    yesterday






  • 8




    String x = new String("ABC"); Please don't do this. You create String object twice. just use x = "ABC";
    – Sarief
    yesterday










  • edit: someone pointed that OP used new String("ABC") to point to fact that it's not interned. I don't see how interning or not interning makes difference for toUpperCase(Locale) method
    – Sarief
    yesterday















up vote
11
down vote

favorite
1












public class Child{

public static void main(String args){
String x = new String("ABC");
String y = x.toUpperCase();

System.out.println(x == y);
}
}


Output: true



So does toUpperCase() always create a new object?










share|improve this question




















  • 2




    I wouldn't rely on this behaviour but I would expect it to avoid creating a new object.
    – Peter Lawrey
    yesterday










  • Note: new String(...) doesn't change the answer.
    – Peter Lawrey
    yesterday






  • 8




    String x = new String("ABC"); Please don't do this. You create String object twice. just use x = "ABC";
    – Sarief
    yesterday










  • edit: someone pointed that OP used new String("ABC") to point to fact that it's not interned. I don't see how interning or not interning makes difference for toUpperCase(Locale) method
    – Sarief
    yesterday













up vote
11
down vote

favorite
1









up vote
11
down vote

favorite
1






1





public class Child{

public static void main(String args){
String x = new String("ABC");
String y = x.toUpperCase();

System.out.println(x == y);
}
}


Output: true



So does toUpperCase() always create a new object?










share|improve this question















public class Child{

public static void main(String args){
String x = new String("ABC");
String y = x.toUpperCase();

System.out.println(x == y);
}
}


Output: true



So does toUpperCase() always create a new object?







java string object






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited yesterday









JJJ

29k147591




29k147591










asked yesterday









Rahul Dev

1589




1589








  • 2




    I wouldn't rely on this behaviour but I would expect it to avoid creating a new object.
    – Peter Lawrey
    yesterday










  • Note: new String(...) doesn't change the answer.
    – Peter Lawrey
    yesterday






  • 8




    String x = new String("ABC"); Please don't do this. You create String object twice. just use x = "ABC";
    – Sarief
    yesterday










  • edit: someone pointed that OP used new String("ABC") to point to fact that it's not interned. I don't see how interning or not interning makes difference for toUpperCase(Locale) method
    – Sarief
    yesterday














  • 2




    I wouldn't rely on this behaviour but I would expect it to avoid creating a new object.
    – Peter Lawrey
    yesterday










  • Note: new String(...) doesn't change the answer.
    – Peter Lawrey
    yesterday






  • 8




    String x = new String("ABC"); Please don't do this. You create String object twice. just use x = "ABC";
    – Sarief
    yesterday










  • edit: someone pointed that OP used new String("ABC") to point to fact that it's not interned. I don't see how interning or not interning makes difference for toUpperCase(Locale) method
    – Sarief
    yesterday








2




2




I wouldn't rely on this behaviour but I would expect it to avoid creating a new object.
– Peter Lawrey
yesterday




I wouldn't rely on this behaviour but I would expect it to avoid creating a new object.
– Peter Lawrey
yesterday












Note: new String(...) doesn't change the answer.
– Peter Lawrey
yesterday




Note: new String(...) doesn't change the answer.
– Peter Lawrey
yesterday




8




8




String x = new String("ABC"); Please don't do this. You create String object twice. just use x = "ABC";
– Sarief
yesterday




String x = new String("ABC"); Please don't do this. You create String object twice. just use x = "ABC";
– Sarief
yesterday












edit: someone pointed that OP used new String("ABC") to point to fact that it's not interned. I don't see how interning or not interning makes difference for toUpperCase(Locale) method
– Sarief
yesterday




edit: someone pointed that OP used new String("ABC") to point to fact that it's not interned. I don't see how interning or not interning makes difference for toUpperCase(Locale) method
– Sarief
yesterday












1 Answer
1






active

oldest

votes

















up vote
16
down vote



accepted










toUpperCase() calls toUpperCase(Locale.getDefault()), which creates a new String object only if it has to. If the input String is already in upper case, it returns the input String.



This seems to be an implementation detail, though. I didn't find it mentioned in the Javadoc.



Here's an implementation:



public String toUpperCase(Locale locale) {
if (locale == null) {
throw new NullPointerException();
}

int firstLower;
final int len = value.length;

/* Now check if there are any characters that need to be changed. */
scan: {
for (firstLower = 0 ; firstLower < len; ) {
int c = (int)value[firstLower];
int srcCount;
if ((c >= Character.MIN_HIGH_SURROGATE)
&& (c <= Character.MAX_HIGH_SURROGATE)) {
c = codePointAt(firstLower);
srcCount = Character.charCount(c);
} else {
srcCount = 1;
}
int upperCaseChar = Character.toUpperCaseEx(c);
if ((upperCaseChar == Character.ERROR)
|| (c != upperCaseChar)) {
break scan;
}
firstLower += srcCount;
}
return this; // <-- the original String is returned
}
....
}





share|improve this answer



















  • 4




    @Sarief if it created a new object (and returned that new object) x == y would definitely return false.
    – Eran
    yesterday






  • 2




    @Sarief it somehow got to this list, which tends to result in high traffic.
    – Eran
    yesterday






  • 1




    @Eran Let me rephrase, even if it had in contract that it creates a new object and it did create a new object, it does not mean that it will return a new object. Strings are contained in Strings pool and are reused mostly from there
    – Sarief
    yesterday






  • 1




    @Sarief First of all its not silly question, as Strings are immutable so any operation performed is expected to result in a separate object. Secondly the answer as many would think is related to same string in string pool, but its not as OP has created string using new and not invoked intern() hence correctly the answer points the implementation bwing the result as why no new object was created for the case presented by the question
    – nits.kk
    yesterday








  • 2




    @nits.kk this should not apply for immutable objects, which Strings are
    – Sarief
    yesterday











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53370200%2fwhen-does-the-touppercase-method-create-a-new-object%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
16
down vote



accepted










toUpperCase() calls toUpperCase(Locale.getDefault()), which creates a new String object only if it has to. If the input String is already in upper case, it returns the input String.



This seems to be an implementation detail, though. I didn't find it mentioned in the Javadoc.



Here's an implementation:



public String toUpperCase(Locale locale) {
if (locale == null) {
throw new NullPointerException();
}

int firstLower;
final int len = value.length;

/* Now check if there are any characters that need to be changed. */
scan: {
for (firstLower = 0 ; firstLower < len; ) {
int c = (int)value[firstLower];
int srcCount;
if ((c >= Character.MIN_HIGH_SURROGATE)
&& (c <= Character.MAX_HIGH_SURROGATE)) {
c = codePointAt(firstLower);
srcCount = Character.charCount(c);
} else {
srcCount = 1;
}
int upperCaseChar = Character.toUpperCaseEx(c);
if ((upperCaseChar == Character.ERROR)
|| (c != upperCaseChar)) {
break scan;
}
firstLower += srcCount;
}
return this; // <-- the original String is returned
}
....
}





share|improve this answer



















  • 4




    @Sarief if it created a new object (and returned that new object) x == y would definitely return false.
    – Eran
    yesterday






  • 2




    @Sarief it somehow got to this list, which tends to result in high traffic.
    – Eran
    yesterday






  • 1




    @Eran Let me rephrase, even if it had in contract that it creates a new object and it did create a new object, it does not mean that it will return a new object. Strings are contained in Strings pool and are reused mostly from there
    – Sarief
    yesterday






  • 1




    @Sarief First of all its not silly question, as Strings are immutable so any operation performed is expected to result in a separate object. Secondly the answer as many would think is related to same string in string pool, but its not as OP has created string using new and not invoked intern() hence correctly the answer points the implementation bwing the result as why no new object was created for the case presented by the question
    – nits.kk
    yesterday








  • 2




    @nits.kk this should not apply for immutable objects, which Strings are
    – Sarief
    yesterday















up vote
16
down vote



accepted










toUpperCase() calls toUpperCase(Locale.getDefault()), which creates a new String object only if it has to. If the input String is already in upper case, it returns the input String.



This seems to be an implementation detail, though. I didn't find it mentioned in the Javadoc.



Here's an implementation:



public String toUpperCase(Locale locale) {
if (locale == null) {
throw new NullPointerException();
}

int firstLower;
final int len = value.length;

/* Now check if there are any characters that need to be changed. */
scan: {
for (firstLower = 0 ; firstLower < len; ) {
int c = (int)value[firstLower];
int srcCount;
if ((c >= Character.MIN_HIGH_SURROGATE)
&& (c <= Character.MAX_HIGH_SURROGATE)) {
c = codePointAt(firstLower);
srcCount = Character.charCount(c);
} else {
srcCount = 1;
}
int upperCaseChar = Character.toUpperCaseEx(c);
if ((upperCaseChar == Character.ERROR)
|| (c != upperCaseChar)) {
break scan;
}
firstLower += srcCount;
}
return this; // <-- the original String is returned
}
....
}





share|improve this answer



















  • 4




    @Sarief if it created a new object (and returned that new object) x == y would definitely return false.
    – Eran
    yesterday






  • 2




    @Sarief it somehow got to this list, which tends to result in high traffic.
    – Eran
    yesterday






  • 1




    @Eran Let me rephrase, even if it had in contract that it creates a new object and it did create a new object, it does not mean that it will return a new object. Strings are contained in Strings pool and are reused mostly from there
    – Sarief
    yesterday






  • 1




    @Sarief First of all its not silly question, as Strings are immutable so any operation performed is expected to result in a separate object. Secondly the answer as many would think is related to same string in string pool, but its not as OP has created string using new and not invoked intern() hence correctly the answer points the implementation bwing the result as why no new object was created for the case presented by the question
    – nits.kk
    yesterday








  • 2




    @nits.kk this should not apply for immutable objects, which Strings are
    – Sarief
    yesterday













up vote
16
down vote



accepted







up vote
16
down vote



accepted






toUpperCase() calls toUpperCase(Locale.getDefault()), which creates a new String object only if it has to. If the input String is already in upper case, it returns the input String.



This seems to be an implementation detail, though. I didn't find it mentioned in the Javadoc.



Here's an implementation:



public String toUpperCase(Locale locale) {
if (locale == null) {
throw new NullPointerException();
}

int firstLower;
final int len = value.length;

/* Now check if there are any characters that need to be changed. */
scan: {
for (firstLower = 0 ; firstLower < len; ) {
int c = (int)value[firstLower];
int srcCount;
if ((c >= Character.MIN_HIGH_SURROGATE)
&& (c <= Character.MAX_HIGH_SURROGATE)) {
c = codePointAt(firstLower);
srcCount = Character.charCount(c);
} else {
srcCount = 1;
}
int upperCaseChar = Character.toUpperCaseEx(c);
if ((upperCaseChar == Character.ERROR)
|| (c != upperCaseChar)) {
break scan;
}
firstLower += srcCount;
}
return this; // <-- the original String is returned
}
....
}





share|improve this answer














toUpperCase() calls toUpperCase(Locale.getDefault()), which creates a new String object only if it has to. If the input String is already in upper case, it returns the input String.



This seems to be an implementation detail, though. I didn't find it mentioned in the Javadoc.



Here's an implementation:



public String toUpperCase(Locale locale) {
if (locale == null) {
throw new NullPointerException();
}

int firstLower;
final int len = value.length;

/* Now check if there are any characters that need to be changed. */
scan: {
for (firstLower = 0 ; firstLower < len; ) {
int c = (int)value[firstLower];
int srcCount;
if ((c >= Character.MIN_HIGH_SURROGATE)
&& (c <= Character.MAX_HIGH_SURROGATE)) {
c = codePointAt(firstLower);
srcCount = Character.charCount(c);
} else {
srcCount = 1;
}
int upperCaseChar = Character.toUpperCaseEx(c);
if ((upperCaseChar == Character.ERROR)
|| (c != upperCaseChar)) {
break scan;
}
firstLower += srcCount;
}
return this; // <-- the original String is returned
}
....
}






share|improve this answer














share|improve this answer



share|improve this answer








edited yesterday

























answered yesterday









Eran

272k35431514




272k35431514








  • 4




    @Sarief if it created a new object (and returned that new object) x == y would definitely return false.
    – Eran
    yesterday






  • 2




    @Sarief it somehow got to this list, which tends to result in high traffic.
    – Eran
    yesterday






  • 1




    @Eran Let me rephrase, even if it had in contract that it creates a new object and it did create a new object, it does not mean that it will return a new object. Strings are contained in Strings pool and are reused mostly from there
    – Sarief
    yesterday






  • 1




    @Sarief First of all its not silly question, as Strings are immutable so any operation performed is expected to result in a separate object. Secondly the answer as many would think is related to same string in string pool, but its not as OP has created string using new and not invoked intern() hence correctly the answer points the implementation bwing the result as why no new object was created for the case presented by the question
    – nits.kk
    yesterday








  • 2




    @nits.kk this should not apply for immutable objects, which Strings are
    – Sarief
    yesterday














  • 4




    @Sarief if it created a new object (and returned that new object) x == y would definitely return false.
    – Eran
    yesterday






  • 2




    @Sarief it somehow got to this list, which tends to result in high traffic.
    – Eran
    yesterday






  • 1




    @Eran Let me rephrase, even if it had in contract that it creates a new object and it did create a new object, it does not mean that it will return a new object. Strings are contained in Strings pool and are reused mostly from there
    – Sarief
    yesterday






  • 1




    @Sarief First of all its not silly question, as Strings are immutable so any operation performed is expected to result in a separate object. Secondly the answer as many would think is related to same string in string pool, but its not as OP has created string using new and not invoked intern() hence correctly the answer points the implementation bwing the result as why no new object was created for the case presented by the question
    – nits.kk
    yesterday








  • 2




    @nits.kk this should not apply for immutable objects, which Strings are
    – Sarief
    yesterday








4




4




@Sarief if it created a new object (and returned that new object) x == y would definitely return false.
– Eran
yesterday




@Sarief if it created a new object (and returned that new object) x == y would definitely return false.
– Eran
yesterday




2




2




@Sarief it somehow got to this list, which tends to result in high traffic.
– Eran
yesterday




@Sarief it somehow got to this list, which tends to result in high traffic.
– Eran
yesterday




1




1




@Eran Let me rephrase, even if it had in contract that it creates a new object and it did create a new object, it does not mean that it will return a new object. Strings are contained in Strings pool and are reused mostly from there
– Sarief
yesterday




@Eran Let me rephrase, even if it had in contract that it creates a new object and it did create a new object, it does not mean that it will return a new object. Strings are contained in Strings pool and are reused mostly from there
– Sarief
yesterday




1




1




@Sarief First of all its not silly question, as Strings are immutable so any operation performed is expected to result in a separate object. Secondly the answer as many would think is related to same string in string pool, but its not as OP has created string using new and not invoked intern() hence correctly the answer points the implementation bwing the result as why no new object was created for the case presented by the question
– nits.kk
yesterday






@Sarief First of all its not silly question, as Strings are immutable so any operation performed is expected to result in a separate object. Secondly the answer as many would think is related to same string in string pool, but its not as OP has created string using new and not invoked intern() hence correctly the answer points the implementation bwing the result as why no new object was created for the case presented by the question
– nits.kk
yesterday






2




2




@nits.kk this should not apply for immutable objects, which Strings are
– Sarief
yesterday




@nits.kk this should not apply for immutable objects, which Strings are
– Sarief
yesterday


















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53370200%2fwhen-does-the-touppercase-method-create-a-new-object%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

サソリ

広島県道265号伴広島線

Accessing regular linux commands in Huawei's Dopra Linux