Why does a class used as a value in a STL map need a default constructor in …?

前端 未结 1 1242
后悔当初
后悔当初 2021-01-05 04:35

Below is the class used as the value in a map:

class Book
{
    int m_nId;
public:
    // Book() { }  <----- Why is this required?
    Book( int id ): m_nI         


        
相关标签:
1条回答
  • 2021-01-05 05:23

    operator[] performs a two step process. First it finds or creates a map entry for the given key, then it returns a reference to the value part of the entry so that the calling code can read or write to it.

    In the case where entry didn't exist before, the value half of the entry needs to be default constructed before it is assigned to. This is just the way the interface needs to work to be consistent with the case where the entry already existed.

    If need to use such a type in a map then you have to avoid the use of operator[] by using find and insert "manually".

    0 讨论(0)
提交回复
热议问题