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

  • Home
  • SEARCH
  • 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 969629
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T02:40:13+00:00 2026-05-16T02:40:13+00:00

In my project there are some code snippets which uses StringBuffer objects, and the

  • 0

In my project there are some code snippets which uses StringBuffer objects, and the small part of it is as follows

StringBuffer str = new StringBuffer();

str.append("new " + "String()");

so i was confused with the use of append method and the + operator.

ie the following code could be written as

str.append("new ").append("String()");

So are the two lines above same?(functionally yes but) Or is there any particular usage of them? ie performance or readability or ???

thanks.

  • 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-05-16T02:40:14+00:00Added an answer on May 16, 2026 at 2:40 am

    In that case it’s more efficient to use the first form – because the compiler will convert it to:

    StringBuffer str = new StringBuffer();
    str.append("new String()");
    

    because it concatenates constants.

    A few more general points though:

    • If either of those expressions wasn’t a constant, you’d be better off (performance-wise) with the two calls to append, to avoid creating an intermediate string for no reason
    • If you’re using a recent version of Java, StringBuilder is generally preferred
    • If you’re immediately going to append a string (and you know what it is at construction time), you can pass it to the constructor
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There are some things that I do a lot in a new project, for
I have a following situation in my project. There are some tag values which
In my project there are some 'Prototype' factories that create instances by cloning a
So I have a project where there is some automatic initialization going on through
I am working on a project with OCaml and there are some problems regarding
I have one java project in netBeans. There are some packages, and classes in
In my current simple project, Copybin , there is some space at the bottom
I develop some PHP project on Linux platform. Are there any disadvantages of putting
I am starting a project which has several applications. These applications share some common
Is there any repository of code snippets, tutorials, whatever, that concentrates on pure JS,

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.