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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T08:06:26+00:00 2026-06-18T08:06:26+00:00

I am considering using the Optional< T > class in Guava library to handle

  • 0

I am considering using the Optional< T > class in Guava library to handle a matrix (2D grid) of objects, while avoiding the use of null references to denote empty cells.

I am doing something like:

class MatrixOfObjects() {
    private Optional<MyObjectClass>[][] map_use;

    public MatrixOfObjects(Integer nRows, Integer nCols) {
        map_use = (Optional<MyObjectClass>[][]) new Optional[nRows][nCols];
        // IS THIS CAST THE ONLY WAY TO CRETE THE map_use INSTANCE?
    }

    public MyObjectClass getCellContents(Integer row, Integer col) {
         return map_use[row][col].get();
    }

    public void setCellContents(MyObjectClass e, Integer row, Integer col) {
         return map_use[row][col].of(e);
         // IS THIS THE CORRECT USE OF .OF METHOD?
    }

    public void emptyCellContents(Integer row, Integer col) {
         map_use[row][col].set(Optional.absent());
         // BUT SET() METHOD DOES NOT EXIST....
    }

    public Boolean isCellUsed(Integer row, Integer col) {
         return map_use[row][col].isPresent();
    }
}

I have three questions about the code above:

  1. How to create an instance of the Array of Arrays of Optional?
  2. How to assign a MyObjectClass object to a cell (this should be correct I think)
  3. How to assign to “empty” a cell such that it does not contains a reference anymore?

I think I am missing something essential about this Optional class.

Thanks

  • 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-18T08:06:27+00:00Added an answer on June 18, 2026 at 8:06 am

    I fixed a few errors in your code, and added comments to explain:

    class MatrixOfObjects { // class declaration should not have a "()"
        private Optional<MyObjectClass>[][] map_use;
    
        public MatrixOfObjects(Integer nRows, Integer nCols) {
            map_use = (Optional<MyObjectClass>[][]) new Optional[nRows][nCols];
        }
    
        public MyObjectClass getCellContents(Integer row, Integer col) {
             return map_use[row][col].get();
        }
    
        public void setCellContents(MyObjectClass e, Integer row, Integer col) {
             // removed "return" keyword, since you don't return anything from this method
             // used correct array assignement + Optional.of() to create the Optional
             map_use[row][col] = Optional.of(e); 
        }
    
        public void emptyCellContents(Integer row, Integer col) {
             // unlike lists, arrays do not have a "set()" method. You have to use standard array assignment
             map_use[row][col] = Optional.absent();
        }
    
        public Boolean isCellUsed(Integer row, Integer col) {
             return map_use[row][col].isPresent();
        }
    }
    

    Here are a few alternatives to create a generic array: How to create a generic array in Java?

    Note that it’s hard to use arrays and generics together if you don’t have a good understanding of how Java treats generics. Using collections is often a better approach.

    All that said, I would use Guava’s Table interface instead of your “MatrixOfObjects” class.

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

Sidebar

Related Questions

I am considering using the android Application class as a place to store temporary
I am considering using TinyMCE to handle the textboxes on sites I develop. I
I am considering using Firebase for an application that should people to use full-text
I am considering using class extension as a way to connect my model with
I was considering using the Timer class for a large number of TimerTasks (say
I'm considering trying to use Munq to do property injection of optional dependencies. Is
I was considering using Dart for a Framework I was going to write. One
We are considering using Cassette in our asp.net web application which might be accessed
I'm considering using a persistent connection to a cloud service from an Android app.
I'm considering using the CFUUIDCreate API to build a database in my server to

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.