Я не могу скомпилировать из-за lvalue и rvalue - PullRequest
0 голосов
/ 21 марта 2020
**C:\Users\Луна\Desktop\sample>g++ source.cpp integerset.cpp -o work
source.cpp: In function 'int main()':
source.cpp:13:30: error: cannot bind non-const lvalue reference of type 'std::vector<bool>&' to an rvalue of type 'std::vector<bool>'
  test.unionOfSets(test.vecRtn(), test2.vecRtn());
                   ~~~~~~~~~~~^~
In file included from source.cpp:5:
IntegerSet.h:9:7: note:   initializing argument 1 of 'void IntegerSet::unionOfSets(std::vector<bool>&, std::vector<bool>&)'
  void unionOfSets(std::vector<bool> &, std::vector<bool> &);**

Это то, что cmd говорит

Здесь часть кода: 1) основной файл

#include <iostream>
#include <vector>
#include "IntegerSet.h"

int main()
{
    IntegerSet test;
    IntegerSet test2;
    test.insertElement(25);
    test2.insertElement(26);
    test.unionOfSets(test.vecRtn(), test2.vecRtn());
}

2) integerSet.h

#ifndef INTEGERSET_H
#define INTEGERSET_H

class IntegerSet
{
public:
    explicit IntegerSet();
    void isEqualTo(const std::vector<bool> &, const std::vector<bool> &);
    void unionOfSets(std::vector<bool> &, std::vector<bool> &);
    void intersectionOfSets(const std::vector<bool> &, const std::vector<bool> &);
    void insertElement(int);
    void deleteElement(int);
    void printSet();
    void printVec3();
    std::vector<bool> returnVec;
    std::vector<bool> vecRtn();
private:
    std::vector < bool > boolVector;
    std::vector <int> intVector;
    std::vector <bool> vec3;
}; 
#endif

3) integerSet. cpp

// IntegerSet.cpp

#include <iostream>
#include <vector>
#include "IntegerSet.h"

IntegerSet::IntegerSet()
{
    IntegerSet::boolVector = std::vector<bool>(101);
    IntegerSet::intVector = std::vector<int>(101) = 
    { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
        11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
        21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
        31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
        41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
        51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
        61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
        71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
        81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
        91, 92, 93, 94, 95, 96, 97, 98, 99, 100};

    ;
} 
std::vector<bool> IntegerSet::vecRtn()
{
    IntegerSet::returnVec = IntegerSet::boolVector;
    return returnVec;
} 
void IntegerSet::printSet()
{
    for (int i = 0; i < 101; ++i)
    {
        if (IntegerSet::boolVector[i] == 1)
        {
            std::cout << IntegerSet::intVector.at(i) << " ";
        }
    }
} 
void IntegerSet::printVec3()
{
    for (int i = 0; i < 101; ++i)
    {
        if (IntegerSet::vec3[i] == 1)
        {
            std::cout << IntegerSet::intVector.at(i) << " ";
        }
    }
}

void IntegerSet::insertElement(int number)
{
    boolVector[number] = 1;

} 

void IntegerSet::deleteElement(int number)
{
    boolVector[number] = 0;
} 

void IntegerSet::unionOfSets(std::vector<bool> &vec1, std::vector<bool> &vec2)
{

    for (int i = 0; i < 101; ++i)
    {
        if (vec1[i] == 1 || vec2[i] == 1)
        {
            IntegerSet::vec3[i] = 1;
        }
        else
        {
            IntegerSet::vec3[i] = 0;
        } 
    } 
    printVec3();
} 


void IntegerSet::intersectionOfSets(const std::vector<bool> &vec1, const std::vector<bool> &vec2)
{

    for (int i = 0; i < 101; ++i)
    {
        if (vec1[i] == 1 && vec2[i] == 1)
        {
            IntegerSet::vec3[i] = 1;
        }
        else
        {
            IntegerSet::vec3[i] = 0;
        }
    } 
    printVec3();
} 


void IntegerSet::isEqualTo(const std::vector<bool> &vec1, const std::vector<bool> &vec2)
{
    if (vec1 == vec2)
        std::cout << "True";
    else
    {
        std::cout << "False";
    }

} 

Большое спасибо, если вы пытаетесь! Ну, этот код, а не мой, но в любом случае я хочу это исправить. Я не знаю, что еще сказать, поэтому я просто напечатаю здесь текст для полных требований вопроса. OMG СКОЛЬКО СИМВОЛОВ Я ДОЛЖЕН СДЕЛАТЬ ЗДЕСЬ, чтобы опубликовать этот вопрос ... может быть, небольшая история? хорошо

...