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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T06:17:36+00:00 2026-05-23T06:17:36+00:00

I read this code from my book: class B extends A {…} class G<E>

  • 0

I read this code from my book:

class B extends A {...}
class G<E> {
public E e;
}
G<B> gb = new G<B>();
G<A> ga = gb;
ga.e = new A();
B b = gb.e; // Error

Why B b = gb.e; arise an error? We didn’t assign anything to b, and for that gb.e is from type B.

  • 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-23T06:17:37+00:00Added an answer on May 23, 2026 at 6:17 am

    With your exact setup, I’ve obtained an error from the compiler (Sun Java Compiler version 1.6.x) at the line where you attempt to create the second reference to the instance of the object G:

    G.java:6: incompatible types
    found   : G<B>
    required: G<A>
                    G<A> ga = gb;
                              ^
    1 error
    

    Attempting to swap where the conversion happens also fails:

    Code:

    G<A> ga = new G<A>();
    G<B> gb = ga;
    gb.e = new A();
    B b = gb.e;
    

    Error:

    G.java:6: inconvertible types
    found   : G<A>
    required: G<B>
                    G<B> gb = (G<B>)ga;
                                    ^
    G.java:7: incompatible types
    found   : A
    required: B
                    gb.e = new A();
                           ^
    2 errors
    

    Are you positive this isn’t an issue with the prior lines? I’m not having luck with this case.

    Even if the case is that you managed to make it that far, this should still fail because of not knowing the proper type of when trying to get a new B reference. Since you can only convert upward (so, A instance = new B() would be OK. B instance = new A() would not be) it wouldn’t makes sense to take the instance of A and move it down the hierarchy to a type of B.

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

Sidebar

Related Questions

I read code from one book and have this method: public int getScore(String name)
this is the code from the tutorial book. class user { // return if
I copied this code from an example . I've read it 100 times. Array.prototype.map
Ignoring unsafe code, .NET cannot have memory leaks. I've read this endlessly from many
Yesterday I read some code of a colleague and came across this: class a_class
This Code is a code I built from the algorithm design manual book but
I wrote this simple test code, by adapting a piece from a book, to
I read from a book saying that the following c++ code should not compile:
I got this code from Andy Tanenbaum's book. I am trying to run it.
I have a data.frame from this code: my_df = data.frame(read_time = c(2010-02-15, 2010-02-15, 2010-02-16,

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.