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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T12:59:03+00:00 2026-06-01T12:59:03+00:00

I have an object that I added to a few different ArrayLists. I wanna

  • 0

I have an object that I added to a few different ArrayLists. I wanna avoid changing every list, so I’m trying to change the pointer so all the lists change. But I can’t get that to work if I want to set the object to null. For example:

ArrayList<Point> list1 = new ArrayList<Point>();
ArrayList<Point> list2 = new ArrayList<Point>();
Point a = new Point(2, 3);
list1.add(a); list2.add(a);

At this point, both lists have an item pointing at the same object. With the value “2, 3”. If I change the value of the object. Then both lists changes:

a.set(5,5);

Now both lists have an item of value “5, 5”. But if I try to set the value to null.

a = null;

Now the a is set to null, but the object both lists is still “5, 5” and not null like I wanted. I even tried to add a method to the Point class to set itself to null. But I couldn’t get that to work either. What could I do to delete the object on all lists by changing only the pointer?

  • 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-01T12:59:05+00:00Added an answer on June 1, 2026 at 12:59 pm

    What could I do to delete the object on all lists by changing only the pointer?

    Nothing. There’s no way you can do that. If you want to null the references to the object in the lists (or remove them from the lists) you must perform an operation on each of the lists.

    If you cannot modify the lists, then consider the following alternatives:

    1. Use a different Point class that has an extra field that says if the point is “valid” and have the code that is looking at the lists check this field.

    2. Create a custom class that represents a nullable reference to a Point; e.g.

        public class PointRef {
            private Point p;
            public PointRef(Point p) { this.p = p; }
            public Point get() { return p; }
            public void invalidate() { p = null; }
        }
      
        ArrayList<PointRef> list1 = new ArrayList<PointRef>();
        ArrayList<PointRef> list2 = new ArrayList<PointRef>();
        PointRef a = new PointRef(new Point(2, 3));
        list1.add(a); list2.add(a);
      
        ...
      
        a.invalidate;
        // Now both lists contain hold a PointRef that points to a null Point.
      

    But both of these make using the lists and their contained Point objects more complicated.

    (@Jeffrey’s answer suggests using the WeakReference class, but that has the wrong semantics. In particular, the reference will “break” if the GC detects that there are no strong references to the object. That’s NOT what your use-case requires … if I understand your question correctly.)


    Incidentally, I can’t think of ANY programming language that would allow you to do what you are trying to do in the way that you propose.

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

Sidebar

Related Questions

I have a cakephp object (SecurityPerson) that has a few foreign key relationships to
I have written a PHP application that uses Objects heavily. Added, deleting, updating etc..
I have two tables: object that has object_id column and avalues that have object_id
I have an object that hasn't been created yet (so it has no ID),
I have an object that requires the URL of a file that resides in
I have an object that I instantiate - it's quite nifty as it also
I have an object that is basically a Python implementation of an Oracle sequence.
I have an object that I am serializing to xml. It appears that a
I have an object that implements an interface. I want to call on the
I have an object that I'm freeing with delete, and it has a char*

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.