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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T15:53:39+00:00 2026-06-15T15:53:39+00:00

Take a look at this test String s1 = 1234; String s2 = 123;

  • 0

Take a look at this test

    String s1 = "1234";
    String s2 = "123";
    Field field = String.class.getDeclaredField("value");
    field.setAccessible(true);
    char[] value1 = (char[]) field.get(s1);
    char[] value2 = (char[]) field.get(s2);
    System.out.println(value1 == value2);

It prints false and it means that the JVM holds two different char arrays for s1 and s2. Can anybody explain the reason why s1 and s2 cannot share the same char array? It seems like java.lang.String was designed for content sharing, isn’t it?

Note: I don’t know about all JVMs. This is Oracle’s Java HotSpot(TM) Client VM 22.1-b02 (JRE 1.7).

UPDATE

On the other hand, if partial sharing is rare (it seems it’s only for Strings created by String.substring) then why should all Strings have int count and int offset fields? It is 8 useless bytes. And this is not only the size, it is also the creation speed. The bigger the object the longer its initialization. Here’s a test

    long t0 = System.currentTimeMillis();
    for (int i = 0; i < 10000000; i++) {
        new String("xxxxxxxxxxxxx");
    }
    System.out.println(System.currentTimeMillis() - t0);

it takes ~200ms. If I use this class

class String2 {
    char[] value;
    String2(String2 s) {
        value = s.value;
    }
}

it takes ~140 ms.

  • 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-15T15:53:40+00:00Added an answer on June 15, 2026 at 3:53 pm

    Can anybody explain the reason why s1 and s2 cannot share the same char array?

    They can, they just don’t, probably because the JVM start-up time would be impacted by looking through the string intern pool for partial matches.

    It’s worth noting that with non-interned strings, they can share a char array, in certain cases:

    String s1 = "1234";
    String s2 = s1.substring(0, 3);
    

    …at least through OpenJDK 6. Apparently, in OpenJDK7 they don’t share anymore (thank you Marko Topolnik for teaching me that here).

    And interestingly, Sun’s JVM 1.6 separates them if you intern:

    String s1 = "1234";
    String s2 = s1.substring(0, 3);
    Field field = String.class.getDeclaredField("value");
    field.setAccessible(true);
    char[] value1 = (char[]) field.get(s1);
    char[] value2 = (char[]) field.get(s2);
    System.out.println(value1 == value2);
    s2 = s2.intern();
    value2 = (char[]) field.get(s2);
    System.out.println(value1 == value2);
    

    I get:

    true
    false

    I guess it doesn’t like having strings in the intern pool that are subsets of other strings.

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

Sidebar

Related Questions

Take a look at this code: public class Test { public static void main(String...
Take a look at this class: public class MemorialPoint:IMemorialPoint,IEqualityComparer<MemorialPoint> { private string _PointName; private
Please, take a look at this example: import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class Test
Take a look at this html: <head> <title>Test page</title> <script type=text/javascript> function submitForm() {
Take a look at this table: <table cellpadding=0 cellspacing=0 class=order_form> <tr> <th>Amount</th> <th>Desc</th> <th>Price</th>
Take a look at this page: http://jqeedu.tuxfamily.org/test/index.php . You'll see a < between the
Please take a look at this code: class Foo { public $barInstance; public function
Please take a look at the following code in a controller named test: $this->load->library('pagination');
take look at this: http://www.templatemonster.com/demo/35403.html In this template you can click on the image
Take a look at this example here: http://denise.brixwork.com/showlisting/1/8297-Valley-Drive-Alpine-Meadows-Whistler-denise-brown-real-estate And the red tables under Specifications

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.