Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8375071
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T15:04:51+00:00 2026-06-09T15:04:51+00:00

Possible Duplicate: StringBuilder vs String concatenation in toString() in Java I am wondering, since

  • 0

Possible Duplicate:
StringBuilder vs String concatenation in toString() in Java

I am wondering, since the compiler internally uses a StringBuilder to append Strings when performing String concatenation, then what’s the point and why should I bother using StringBuilder if String concatenation already did the job for you? Are there any other specific reasons?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T15:04:53+00:00Added an answer on June 9, 2026 at 3:04 pm

    As you mention, you should not use StringBuilder instead of a simple string concatenation expression such as a + " = " + b. The latter is faster to type, easier to read, and the compiler will use a StringBuilder internally anyway so there is no performance advantage by rewriting it.

    However StringBuilder is useful if you are concatenating a large number of strings in a loop. The following code is inefficient. It requires O(n2) time to run and creates many temporary strings.

    String result = "";
    for (int i = 0; i < foo.length; ++i)
    {
        result += bar(foo[i]);  // Bad
    }
    

    Try this instead:

    StringBuilder sb = new StringBuilder();
    for (int i = 0; i < foo.length; ++i)
    {
        sb.append(bar(foo[i]));
    }
    String result = sb.toString();
    

    The compiler optimises only simple a + b + c expressions. It cannot optimize the above code automatically.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: java String concatenation StringBuilder vs String concatenation in toString() in Java I
Possible Duplicate: Why is String.Concat not optimized to StringBuilder.Append? One day I was ranting
Possible Duplicate: String vs StringBuilder i know .NET Strings are immutable which is the
Possible Duplicate: LINQ to append to a StringBuilder from a String[] Forgive my functional
Possible Duplicate: How to clear/empty Java Stringbuilder I'm adding values to a string and
Possible Duplicate: String, StringBuffer, and StringBuilder We know that String are immutable where StringBuffer
Possible Duplicate: String concatenation vs String Builder. Performance Any difference (performance and memory usage)
Possible Duplicate: StringBuilder and StringBuffer in Java what is the difference between StringBuilder and
Possible Duplicate: String vs StringBuilder I just revisited some of the books that I
Possible Duplicate: Difference between string and StringBuilder in c# What’s the difference between System.String

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.