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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T15:18:53+00:00 2026-06-10T15:18:53+00:00

Possible Duplicate: Determining the Type for a generic method parameter at runtime Generics in

  • 0

Possible Duplicate:
Determining the Type for a generic method parameter at runtime
Generics in static methods

The code below fails at runtime with cannot select from a type variable. Is there any way of doing this without having to pass the type as a parameter (Class<E[]> type)?

public static <E extends Deal> E[] parseDealsFromJSON(String body) {
    parser.fromJson(body, E[].class); // fails here
}

public static void main(String[] args) {
    SubDeal[] deals = parseDealsFromJSON("");
}
  • 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-10T15:18:55+00:00Added an answer on June 10, 2026 at 3:18 pm

    A problem is that the right hand size of = has no idea what type you want on the left hand side. i.e. java doesn’t do this kind of type inference.

    A method doesn’t know what type you need a return type to be. (I have seen exceptions at runtime with MethodHandles and I suspect that Java 8 or 9 might introduce these features)

    e.g. very basic type inference for return types isn’t done at runtime (or compile time)

    public Double getValue() {
        return 5.0;
    }
    
    double d = m.getValue(); // not smart enough to avoid creating a `Double` here.
    

    With Generics you have the added bonus of type erasure. This mean E[] is actually Deal[] at runtime. Which Deal type you might have liked is lost.

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

Sidebar

Related Questions

Possible Duplicate: Determining if an Object is of primitive type This may sound moronic,
Possible Duplicate: Create Generic method constraining T to an Enum Is there any reason
Possible Duplicate: && operator in Javascript In the sample code of the ExtJS web
Possible Duplicate: Determining if an unordered vector<T> has all unique elements I have to
Possible Duplicate: How to successfully rewrite old mysql-php code with deprecated mysql_* functions? I
Possible Duplicate: C++ float precision question I've got a problem of determining the most
Possible Duplicate: Java: Start Mail-Client with Attachment? I need to create a java code
Possible Duplicate: Determining the number of occurrences of each unique element in a vector
Possible Duplicate: How do I trim a string in javascript? By using replace method
Possible Duplicate: How to call base.base.method()? I have some trouble with Inheritance in C#.

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.