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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T01:56:42+00:00 2026-05-15T01:56:42+00:00

i define an object: tempRes = new Object[100000][7]; now after that i fill it

  • 0

i define an object:

tempRes = new Object[100000][7];

now after that i fill it up till 100 rows for example.
Now how to delete every object past that(from tempRes[100] too tempRes[10000]).

I need this for a JTable.

  • 1 1 Answer
  • 3 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-15T01:56:43+00:00Added an answer on May 15, 2026 at 1:56 am

    Honestly, don’t use an array if you don’t know how many items you will have to add. An array will reserve memory for the given size. Use a List or a Vector, add your items, and convert it to an array later. Or do not convert it at all if your usage (JTable for example) can also work with Vectors.

    In addition, in case you have the data stored elsewhere in memory and the list is huge, implementing your own TableModel subclass (which is called dynamically when you scroll to the rows and you will have to build them on demand then) is a lot more efficient than rendering all your rows into an array first.

    Example for a List:

        List<Object[]> tempRows = new ArrayList<Object[]>();
        for (int i = 0; i < 100; i++) {
            Object[] row = new Object[] {"This", "Is", "Just", "Some", "Example", "Data", "Here"};
            tempRows.add(row);
        }
        Object[][] tempRes = (Object[][]) tempRows.toArray(new Object[tempRows.size()][]);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given that users must be able to define their own fields on an object,
In PHP, if you define a class, and then instantiate an object of that
In UML, does an object's state machine define that object's lifecycle? That is, do
Doctrine Automatically creates indexes on columns that are used to define object relations, For
How to define an object that will be send to the client ?
I am wondering how I can define an object in C whose reference will
public object MethodName(ref float y) { // elided } How do I define a
Im trying to define a dataTemplate for a business object in my wpf application
So, I want to define a singleton method for an object, but I want
I have a script which creates a user-defined object like this: obj = new

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.