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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T19:56:36+00:00 2026-06-14T19:56:36+00:00

Inside of class ATester { private A<Integer> p1,p2; p1 = new B<Integer>(); p2 =

  • 0
Inside of class ATester
{
   private A<Integer> p1,p2;

    p1 = new B<Integer>();
    p2 = new B<Integer>( p1);

}

public class B<E extends Comparable<? super E>> implements A<E>
{
     public B()   // default constructor
     {
        // skip
     }

     public B(B other)  // copy constructor
     {
        // skip
     }

}

I want to define a copy constructor, which takes another B as argument
but when I pass p1 into

p2 = new B<Integer>( p1);

when compile, it gives me error message

“no suitable constructor found for B< A < Integer > >”

What should I change or add?

  • 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-14T19:56:37+00:00Added an answer on June 14, 2026 at 7:56 pm

    Change it to

    Or call as p2 = new B<Integer>( (B<Integer>)p1);

    Because what you are trying to do is send A<Integer> to B in the constructor.
    Ultimately it is

    B b = element of type A<Integer>
    

    Which is wrong due to contra-variance of argument type. Either change the argument type in you B constructor as per design or do the above mentioned

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

Sidebar

Related Questions

If I have a constructor called Point inside class Point: public Point(double x, double
Which scenario should I use for changing private fields inside class methods/properties: public class
In PHP, What is the difference between declaring methods inside class like public function
So I have a class with a wrapper class inside like so: public class
Take this sample code: Class Foo ReadOnly name As String Public Sub New(name As
private class Node { Item name; Node next; public void deleteObject() { this =
I want to declare a private variable inside class which I want to access
For example : class User { private $sex = 1; public function getSex() {
There are two ways to overload operators for a C++ class: Inside class class
At the moment inside the class I have ArrayList which the objects are stored

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.