Method accepting two different types as parameter

66,249

Solution 1

How about this:

interface ICrushable {
    void crush();
}

utterlyDestroy(ICrushable parameter) {
    // Very long crushing process goes here
    parameter.crush()
}

utterlyDestroy(Dreams parameter) {
    utterlyDestroy(new ICrushable() { crush() {parameter.crush();});
}

utterlyDestroy(Garlic parameter) {
    utterlyDestroy(new ICrushable() { crush() {parameter.crush();});
}

New development should implement the ICrushable interface, but for the existing Classes, the parameter is wrapped in an ICrushable and passed to the utterlyDestroy(ICrushable) that does all the work.

Solution 2

How about something as simple as this?

utterlyDestroy(Object parameter) {
    if (parameter instanceof Dreams) {
        Dreams dream = (Dreams) parameter;
        dream.crush();
        // Here you can use a Dream
    } else if (parameter instanceof Garlic) {
        Garlic garlic = (Garlic) parameter;
        garlic.crush();
        // Here you can use a Garlic
    }
}

...or if you are on Java 14+:

utterlyDestroy(Object parameter) {
    if (parameter instanceof Dreams dream) {
        dream.crush();
        // Here you can use a Dream
    } else if (parameter instanceof Garlic garlic) {
        garlic.crush();
        // Here you can use a Garlic
    }
}

If the utterlyDestroy is too complex and big and you just want to call the crush then this does what you want.

Solution 3

You can implement a Haskell-esque Either-class in Java; something like this:

class Either<L,R>
{
    private Object value;

    public static enum Side {LEFT, RIGHT}

    public Either(L left)  {value = left;}
    public Either(R right) {value = right;}

    public Side getSide() {return value instanceof L ? Side.LEFT : Side.RIGHT;}

    // Both return null if the correct side isn't contained.
    public L getLeft() {return value instanceof L ? (L) value : null;}
    public R getRight() {return value instanceof R ? (R) value : null;}
}

Then you let that method take something of type Either<Dreams, Garlic>.

Solution 4

You could use an interface and adapt your types to it.

Interface:

public interface Crushable {
  public void crush();
}

Example invocation:

public class Crusher {
  public static void crush(Crushable crushable) {
    crushable.crush();
  }
}

Example adapter factory method:

public final class Dreams {
  public static Crushable asCrushable(final Dream dream) {
    class DreamCrusher implements Crushable {
      @Override
      public void crush() {
        dream.crush();
      }
    }
    return new DreamCrusher();
  }

  private Dreams() {}
}

The consumer code looks like this:

  Dream dream = new Dream();
  Crushable crushable = Dreams.asCrushable(dream);
  Crusher.crush(crushable);

If you have many types to adapt, you could consider reflection. Here is an (unoptimized) adapter factory that uses the Proxy type:

public final class Crushables {
  private static final Class<?>[] INTERFACES = { Crushable.class };

  public static Crushable adapt(final Object crushable) {
    class Handler implements InvocationHandler {
      @Override
      public Object invoke(Object proxy, Method method, Object[] args)
          throws Throwable {
        return crushable.getClass()
            .getMethod(method.getName(), method.getParameterTypes())
            .invoke(crushable, args);
      }
    }

    ClassLoader loader = Thread.currentThread()
        .getContextClassLoader();
    return (Crushable) Proxy.newProxyInstance(loader, INTERFACES, new Handler());
  }

  private Crushables() {}
}

To the API consumer, this isn't that ugly:

  Dream dream = new Dream();
  Crushable crushable = Crushables.adapt(dream);
  Crusher.crush(crushable);

However, as is usual with reflection, you sacrifice compile-time type checking.

Solution 5

Creating an Interface Crushable seems like the cleanest way to go. Is subtyping Garlic or Dreams an option, and adding your Interface to the subtype?

Barring that, you can put common code in a private method, and have the two versions of utterlyDestroy do what they have to do to the individual objects before calling the common code. If you method body is long, probably need to break it up into private methods anyway. I'm guessing you already thought of this, though, as it is even more obvious a solution than adding an Interface.

You can bring the parameter in as an Object and then cast it. Is this what you mean by reflection? i.e.,

public void utterlyCrush(Object crushable) {
    if (crushable instanceOf Dream) {
         ...
    }
    if (curshable instanceOf Garlic) {
         ...
    }

But casting from Garlic to Dream is not an option given that one is not a subtype of the other.

Share:
66,249
JohnEye
Author by

JohnEye

Updated on August 03, 2021

Comments

  • JohnEye
    JohnEye over 2 years

    I am writing a method that should accept as its parameter an object of one of two types which do not share a parent type other than Object. For example, the types are Dreams and Garlic. You can do both dreams.crush() and garlic.crush(). I want to have a method utterlyDestroy(parameter), that would accept as its parameter both Dreams and Garlic.

    utterlyDestroy(parameter) {
        parameter.crush()
    }
    

    Both Garlic and dreams are a part of some library, so having them implement an interface ICrushable (so that I could write utterlyDestroy(ICrushable parameter) ) is not an option.

    My method body is quite long so overloading it would mean duplicating code. Ugly. I am sure I could use reflection and do some class hacking. Ugly.

    I tried using generics but apparently I cannot write something like

    utterlyDestroy(<T instanceof Dreams || T instanceof Garlic> parameter)
    

    Is it possible to typecast Garlic to Dreams?

    utterlyDestroy(Object parameter) {
        ((Dreams)parameter).crush()
    }
    

    This would still be ugly though. What are my other options and what is the preferred method of dealing with the situation?

  • JohnEye
    JohnEye almost 12 years
    As I said, my method is quite a long one and this would mean duplicating code.
  • JohnEye
    JohnEye almost 12 years
    No, it is only in one place. Thanks for the answer though.
  • Jirka Hanika
    Jirka Hanika almost 12 years
    @JohnEye - Call for an interface already at only two classes, then. See also AadvarkSoup's answer in case that you cannot properly structure your class hierarchy.
  • JohnEye
    JohnEye almost 12 years
    No, by reflection I meant using some of the nifty features to find a method called crush() and executing it or something like that. I only wrote that to discourage 'the reflection trolls' from answering.
  • JohnEye
    JohnEye almost 12 years
    Naturally this occurred to me, but using Object as a parameter seems wrong.
  • Akshay
    Akshay about 9 years
    Aren't you repeating the same code here? Doesn't make sense to me.
  • Justin
    Justin about 2 years
    This comment seems closest to OPs intent. But assuming they'd [eventually] want more than just two type options, it sounds like they really want a new typeclass (data Target = Dreams | Garlic) so they could write a function (public void crush (Target t)). Unclear if this is possible in Java without carrying around a massive list of type specifications.
  • Rorschach
    Rorschach almost 2 years
    Is there a way to make utterlyDestroy garlic or dreams listed as one function so you don't have to copy paste code?
  • Devon_C_Miller
    Devon_C_Miller almost 2 years
    @Rorschach those implementations are expressly to handle legacy objects that do not implement ICrushable. Any classes that implement the interface will run through the first utterlyDestroy method and will not need a custom method.