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

  • Home
  • SEARCH
  • 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 7436321
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T10:13:16+00:00 2026-05-29T10:13:16+00:00

Consider the following Java function: public void foo(Class<? extends Exception> cl, List<? extends Exception>

  • 0

Consider the following Java function:

public void foo(Class<? extends Exception> cl, List<? extends Exception> ls) throws Exception {
    ls.add(cl.newInstance());
}

This does not work, since the type captures of cl and ls are not unified and can, indeed, refer to different types. Had this function compiled, I could have called it as foo(NullPointerException.class, new List<SecurityException>()), which would have been illegal.

We can fix this, obviously, by unifying the type captures, like this:

public <T extends Exception> void foo(Class<T> cl, List<T> ls) throws Exception {
    ls.add(cl.newInstance());
}

Now this function works as expected. Thus, onto my question: Is there any way to unify type captures within a single type declaration?

For example, I often find myself wanting a map that maps classes to instances of themselves. The only way I can currently think of doing this is to have an accompanying function that does unchecked casts:

private Map<Class<? extends Foo>, ? extends Foo> map = ...;
@SuppressWarnings("unchecked")
private <T extends Foo> T getFoo(Class<T> cl) {
    return((T)map.get(cl));
}

But it would obviously be nicer to not have to suppress warnings and just have the compiler understand that the two type captures in the map type declaration should be the same, and then just make the map public. For example, if I could have a declaration akin to this:

<T extends Foo> Map<Class<T>, T> map = ...;

Obviously, that’s not valid syntax, but my question boils down to: Is there any valid syntax that would let my do something to that effect?

  • 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-29T10:13:17+00:00Added an answer on May 29, 2026 at 10:13 am

    You are looking for Generics of a Higher Kind. Java does not have them and likely never will. I realize that this is a Java question, nonetheless I will point out that Scala has higher kinds. If you want to see what it means to have such power in a type system, you might want to play with it.

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

Sidebar

Related Questions

Consider the following Java class: public class Foo { public static void doStuff() {
Consider the following Java exception classes: public class BarException extends RuntimeException { // [...]
Consider the following code: public class ReadingTest { public void readAndPrint(String usingEncoding) throws Exception
Consider the following simple code import java.util.*; public class MainTest<T extends Object1<?,?>> { List<T>
Consider the following snippet: import java.util.*; public class EqualsOverload { public static void main(String[]
Consider the following program: import java.util.List; import java.util.ArrayList; public class TypeTest { public static
Please consider the following java source: package com.stackoverflow; public class CondSpeed { private static
Consider the following classes in Java class A { protected void methodA() { System.out.println(methodA()
Let's consider the following code in Java. package obj; final class First { public
Let's consider the following code snippet in Java. package escape; final public class Main

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.