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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T05:23:55+00:00 2026-06-11T05:23:55+00:00

I was looking through the source code of this class and I start from

  • 0

I was looking through the source code of this class and I start from append method that is called by StringBUffer.append();

public AbstractStringBuilder append(String str) {
   if (str == null) str = "null";
       int len = str.length();
   if (len == 0) return this;
   int newCount = count + len;
   if (newCount > value.length)
      expandCapacity(newCount); // newcount is the new volumn of a char array
    str.getChars(0, len, value, count);
    count = newCount;
    return this;
  }

Then I went deeper into enpandCapacity method

void expandCapacity(int minimumCapacity) {
    int newCapacity = (value.length + 1) * 2; //here value is a char array 
    if (newCapacity < 0) { // Why is newCapacity less than 0?
                           // Is that possible? When it will be possible?
        newCapacity = Integer.MAX_VALUE;
    } else if (minimumCapacity > newCapacity) {
        newCapacity = minimumCapacity;
    }
    value = Arrays.copyOf(value, newCapacity);
}

Why is newCapacity less than 0? Is that possible? When it will be possible?

  • 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-11T05:23:57+00:00Added an answer on June 11, 2026 at 5:23 am

    Yes; signed integers can become negative once the max value of the int type (2^31 – 1) is exceeded. If you take a look, they are essentially capping the capacity at Integer.MAX_VALUE. Similar type of question here.

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

Sidebar

Related Questions

So I was looking through some boost source code and came across this: (from
I occasionally run into this type of syntax when looking through open source code
Looking through the Android SDK framework source code, I've come across this: private final
Looking at some source code, I found this operator () => { } From
I was looking through the GHUnit source code, and noticed that they wrap most/all
I have been looking through the source code for the Flash-based Google TV example
Looking through the massive android source code, anyone on here who know where exactly
I have been looking through some code on an open source project recently and
I am looking though some source code from a third party and am repeatedly
I was looking through the OpenJDK class file parser source and I came across

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.