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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T05:09:53+00:00 2026-06-15T05:09:53+00:00

template <class Type> class Queue { Queue(): head(0), tail(0) { cout << Queue–default constructor

  • 0
template <class Type> class Queue {


    Queue(): head(0), tail(0) {
        cout << "Queue--default constructor called" << endl;
    }

    Queue(const Queue &Q): head(0), tail(0) {
        cout << "Queue--copy constructor called" << endl;
        //...
    }

    Queue& operator=(const Queue&) {
        cout << "Queue--operator= called" << endl;
        //...
    }
    ~Queue() { //... }

private:
    QueueItem<Type> *head;         
    QueueItem<Type> *tail;         
};

I have defined a template class Queue and tried the codes below:

Queue<char*> cq;
Queue<char*> ccq(cq);   
Queue<char*> acq = cq;  
Queue<char*> acq2;
acq2 = cq;

and the output is:

Queue--default constructor called
Queue--copy constructor called
Queue--copy constructor called
Queue--default constructor called
Queue--operator= called

what confuse me is the code Queue<char*> acq = cq; has invoked the copy constructor Queue--copy constructor called but not the default constructor and operator= to be called.

Could any one help me?

Thank you for considering my question!

  • 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-15T05:09:54+00:00Added an answer on June 15, 2026 at 5:09 am

    This is defined in the standard, it’s in the section Explicit initialization

    1
    Explicit initialization
    [class.expl.init]
    An object of class type can be initialized with a parenthesized expression-list, where the expression-list
    is construed as an argument list for a constructor that is called to initialize the object. Alternatively, a
    single assignment-expression can be specified as an initializer using the = form of initialization. Either
    direct-initialization semantics or copy-initialization semantics apply; see 8.5.

    This is the case describing single assignment-expression and copy-initialization semantics.

    Technically there’s no difference between the two forms ccq(cq) and acq = cq, as you have already seen from the output.

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

Sidebar

Related Questions

I've made a class template called Queue but I'm having problems trying to instanciate
I am writing a template class which takes a floating-point-like type (float, double, decimal,
Is there a way for taking type of a template class, for example //i
I've a basic template class, but I'd like to restrain the type of the
#include <list> template < class TYPE > class CIndex : protected std::list < TYPE
I would like to design a class template which takes an allocator type (as
I really like the following template to create properties for class in VS2005 Type
I have a template class, called OneCell , here the definition: template <class T>
Is there any hack I could use to do this: template <class TYPE> class
I made my own class template to maintain pair of elements of any type

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.