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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T00:02:18+00:00 2026-05-17T00:02:18+00:00

I want to ask the size of the NSMutable Array can be 2000? If

  • 0

I want to ask the size of the NSMutable Array can be 2000? If not, is it possible to open an array to store 2000 elements. The elements is the user-defined object. Thank you.

  • 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-17T00:02:19+00:00Added an answer on May 17, 2026 at 12:02 am

    The answer is that an NSMutableArray always starts with a size of zero. If you want it to be so you can do something like this:

    NSMutableArray* anArray = [NSMutableArray arrayWithSize: 2000];
    [anArray replaceObjectAtIndex: 1999 withObject: foo];
    

    you need to prefill the array with NSNull objects e.g.

    @implementation NSArray(MyArrayCategory)
    
    +(NSMutableArray*) arrayWithSize: (NSUInteger) size
    {
        NSMutableArray* ret = [[NSMutableArray alloc] initWithCapacity: size];
        for (size_t i = 0 ; i < size ; i++)
        {
            [ret addObject: [NSNull null]];
        }
        return [ret autorelease];
    }
    
    @end
    

    Edit: some further clarification:

    -initWithCapacity: provides a hint to the run time about how big you think the array might be. The run time is under no obligation to actually allocate that amount of memory straight away.

        NSMutableArray* foo = [[NSMutableArray alloc] initWithCapacity: 1000000];
        NSLog(@"foo count = %ld", (long) [foo count]);
    

    will log a count of 0.

    -initWithCapacity: does not limit the size of an array:

        NSMutableArray* foo = [[NSMutableArray alloc] initWithCapacity: 1];
        [foo addObject: @"one"];
        [foo addObject: @"two"];
    

    doesn’t cause an error.

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

Sidebar

Related Questions

I want to ask a question about Java. I have a user-defined object class,
want to ask user to input something but not want to wait forever. There
I want to ask about how to store data retrieved from a cursor object
Possible Duplicate: size of a datatype in c I want to ask you does
I want to ask how can someone read keystrokes while in a html page
I want to ask wether it's possible to develop a J2ME application for Nokia
On my website I want a small flash banner which the user can activate
I don't how to ask this question but I want to create an object
hello every one i want to ask that i have read that we can
I want to ask a question about the iPhone plist. What is the size

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.