簡體   English   中英

“ C ++庫不為此類型提供哈希。”-在std :: unordered_map中使用自己的類

[英]“The C++ Library doesen't provide a hash for this type.” - Using own class in std::unordered_map

我正在嘗試編碼Conway的“生命游戲”。 在接近目標時,我陷入了編譯器錯誤:

C2338:C ++庫沒有為該類型提供哈希。

最初,我使用SFML類sf::Vector2D 當它對我不起作用時,我編寫了自己的類,希望可以實現缺少的hashCode方法。

我的問題是:
是否可以將我自己的類及其自身的hashCode方法用於std::unordered_map 我需要使用一個可以容納兩個數字的類。 (我也嘗試過std::tuplestruct和東西)。

這是我的代碼之一:

#include "GameMechanics.h"



GameMechanics::GameMechanics(Elements * elements):elements(elements)
{
    this->refreshTime = 1000000;    //ms
    this->clock.restart();
}


GameMechanics::~GameMechanics()
{
}

bool GameMechanics::isRunning()
{
    return this->running;
}

void GameMechanics::setRunning(bool running)
{
    this->running = running;
}

void GameMechanics::loop()
{

    unsigned passedTime = clock.getElapsedTime().asMicroseconds();  //check passed time since the clock got restarted
    this->timeHeap  +=  passedTime; //add passed time to the timeheap
    this->clock.restart();
    //only refresh every "refreshTime" seconds
    if (timeHeap >= this->refreshTime) {    
        std::cout << "Calculated new generation!" << std::endl;
        this->timeHeap -= this->refreshTime;
        this->calculateNextGeneration();
    }
}

void GameMechanics::calculateNextGeneration()
{
    std::list<sf::Vector2i> oldGeneration = this->elements->getElements();  //  population in the moment

    sf::Vector2u elements = this->elements->getElementCount();

    std::unordered_map<MyVector2D, int> counter;     //here is the problem. Thats the line that makes some trouble


    for (std::list<sf::Vector2i>::iterator it = oldGeneration.begin(); it != oldGeneration.end(); it++) {
        sf::Vector2i position = *it;

        for (int i = -1; i < 2; i++) 
        {
            for (int j = -1; j < 2; j++) 
            {
                if (position.x + i >= 0 && position.x + i <= this->elements->getElementCount().x &&
                    position.y + j >= 0 && position.y + j <= this->elements->getElementCount().y) 
                {
                    if (counter.find(MyVector2D(position.x + i, position.y + j)) != counter.end()) 
                    {
                        counter.at(MyVector2D(position.x + i, position.y + j))++;
                    }
                    else //if there is no such element, create a new entry
                    {
                        counter.insert({ MyVector2D(position.x + i, position.y + j),1 });
                    }
                }
            }
        }
    }


    //create new generation
    this->brithNewGeneration(&counter);
}

void GameMechanics::brithNewGeneration(std::unordered_map<MyVector2D,int>* counter)
{
    //this methode does work

    std::list<sf::Vector2i> newGeneration;
//  for (std::unordered_map<MyVector2D, int>::iterator it = counter->begin(); it != counter->end(); it++) 
    {
        //if life vell with < 2 neighbours, it dies
        //life cell with 2 or 3 neighbours will continue living

        //life cell with >4 cells will die

        //dead cell with 3 neighbours will start living
    }
}

std::unordered_map (和std::unordered_set )所需的自定義哈希函數不是存儲類型的成員函數。 您需要專門化std :: hash模板:

namespace std {
    template<>
    struct hash<YourType> {
        using argument_type = YourType;
        using result_type = std::size_t;

        result_type operator()(argument_type const &obj) const {
            // Compute and return the hash value for `obj`.
        }
    };
}

您的案例正是這樣做的原因:如果願意,可以將std::hash專用於sf::Vector2D ,而無需實現自己的類。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM