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 8394487
In Process

The Archive Base Latest Questions

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

I have a long string that doesn’t fit the width of the screen. For

  • 0

I have a long string that doesn’t fit the width of the screen. For eg.

String longString = "This string is very long. It does not fit the width of the screen. So you have to scroll horizontally to read the whole string. This is very inconvenient indeed.";

To make it easier to read, I thought of writing it this way –

String longString = "This string is very long." + 
                    "It does not fit the width of the screen." +
                    "So you have to scroll horizontally" +
                    "to read the whole string." +
                    "This is very inconvenient indeed.";

However, I realized that the second way uses string concatenation and will create 5 new strings in memory and this might lead to a performance hit. Is this the case? Or would the compiler be smart enough to figure out that all I need is really a single string? How could I avoid doing this?

  • 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-09T20:04:33+00:00Added an answer on June 9, 2026 at 8:04 pm

    I realized that the second way uses string concatenation and will create 5 new strings in memory and this might lead to a performance hit.

    No it won’t. Since these are string literals, they will be evaluated at compile time and only one string will be created. This is defined in the Java Language Specification #3.10.5:

    A long string literal can always be broken up into shorter pieces and written as a (possibly parenthesized) expression using the string concatenation operator +
    […]
    Moreover, a string literal always refers to the same instance of class String.

    • Strings computed by constant expressions (§15.28) are computed at compile time and then treated as if they were literals.
    • Strings computed by concatenation at run-time are newly created and therefore distinct.

    Test:

    public static void main(String[] args) throws Exception {
        String longString = "This string is very long.";
        String other = "This string" + " is " + "very long.";
    
        System.out.println(longString == other); //prints true
    }
    

    However, the situation situation below is different, because it uses a variable – now there is a concatenation and several strings are created:

    public static void main(String[] args) throws Exception {
        String longString = "This string is very long.";
        String is = " is ";
        String other = "This string" + is + "very long.";
    
        System.out.println(longString == other); //prints false
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a if statement that does not work, it doesn't check its condition
I have a long string which doesn't fit to the JPanel i am putting
I have a simple question. I have a long std::string that I want to
I have a long string of comments that I'd like to split into multiple
i have a long string of date . looks like that : Mon Jun
I have a long string, ex: Please help me to solve this problem. This
I have a long string, the format will be same of this string but
I’m not sure how to use Java/JDBC to insert a very long string into
I have a long string that I want to encode to ascii. I'm doing:
I have a string that looks like this: 0.4794255386042030002732879352156 which is approximately the sin(0.5).

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.