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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T09:43:41+00:00 2026-05-24T09:43:41+00:00

In Java I have two classes: Class A { public String ID; public Object

  • 0

In Java I have two classes:

Class A
{
  public String ID;
  public Object Name;
}

Class B
{
  public String ID;
  public Object Name;
}

I want to have a method where I can pass it either a Class A or B object:

public void SomeMethod(???  arg)
{
  String id = arg.ID;
  Object name= arg.Name;
}

Is it possible to pass an object of either class A or B to this method? If so, how is the method’s signature written?

The only solution I can think of is to create an interface that both Class A and B implements containing get and set methods to set the fields ID and Name. Then the method’s signature would be a parameter whose type is the interface. I was hoping that maybe there is a simpler way, possibly with generics?

  • 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-24T09:43:43+00:00Added an answer on May 24, 2026 at 9:43 am

    You don’t need generic types. Simple inheritance will do the job

    abstract class Base {
      public String ID;
      public Object Name;
    }
    
    class A extends Base {
    }
    
    class B extends Base {
    }
    
    public void SomeMethod(Base arg)
    {
      String id = arg.ID;
      Object name= arg.Name;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Thanks !!i have two .java classes as trial.java and CommonActivity.java as: public void onClick(View
I have the following two classes: import java.io.*; import java.util.*; public class User {
I have two Java classes: B, which extends another class A, as follows :
I am new to java and I have two classes (class calc and button)
I'm making a shopping list mobile application (Java ME) and i have two classes;
How do I do forward declarations in Java? I have two classes, each needs
I have two Java.io.File objects file1 and file2. I want to copy the contents
I have two strings in a java program, which I want to mix in
I have two java classes. One is NewFrame.java where the forms(buttons, textfields) are located.
I have two Java class files: primegen and primecheck sitting in the same directory.

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.