1

我有两个 cpp 文件和一个 hpp 文件。Main.cpp、Ab.cpp 和 Ab.hpp。

在这些文件中,我创建了一个类“Ab”,它有一个默认构造函数和一个接受字符串的构造函数。在类中,我想重新定义 * 运算符以将给定值设置为类的对象,并删除之前分配给它的任何值。

值得一提的是,我被指示在此任务中不允许使用任何复制构造函数或复制分配。这意味着我必须求助于使用纯粹的移动构造函数和移动赋值。在这些科目中,我的知识非常有限,因为我以前只使用过基本的 C#。

Main.cpp 如下:

#include <iostream>
#include "Ab.hpp"

A MoveTest(std::string testData)
{
    return Ab(new std::string(testData));
}

int main()
{
    std::cout << "-----'Ab' Test Begin-----" << std::endl;


    std::cout << "'Ab' test: Constructor begins." << std::endl;
    Ab emptyAb;
    Ab moveTestAb(new std::string("To remove"));
    std::cout << "'Ab' test: Constructor done. Press enter to continue." << std::endl;
    std::cin.get();

    std::cout << "Ab' test: Moveoperator begins." << std::endl;
    moveTestAb = MoveTest("This is a test movement");
    std::cout << "Expected output:         " << "This is a test movement" << std::endl;
    std::cout << "Output from moveTestAb: " << *moveTestAb << std::endl;
    std::cout << "'Ab' test: Moveoperator done. Press enter to continue." << std::endl;
    std::cin.get();
    std::cout << "-----'Ab' Test End-----" << std::endl;
    std::cin.get();
}

Ab.cpp 如下:

#include "Ab.hpp"

std::string Ab::Get() const
{
    return "test";
}
bool Ab::Check() const
{
    bool return_value = true;
    if (this==NULL)
    {
        return_value = false;
    }
    return return_value;
}

Ab & Ab::operator=(const Ab &ptr)
{
    return *this;
}


Ab & Ab::operator*(Ab &other)
{
    if (this != &other) {
        delete this->a_string;
        this->a_string = other.a_string;
        other.a_string = nullptr;
    }
    Ab *thing_to_return = &Ab(this->a_string);
    return *thing_to_return;  
}

Ab.hpp 如下

#include <string>
class Ab
{
    Ab(const Ab&) = delete;

    std::string* a_string;
    public:
        Ab &operator=(const Ab&);

    Ab& operator*(Ab&);



        Ab();
        Ab(std::string *the_string):
        a_string(the_string){};
        int b = 0;
        int a = 3;
        std::string Get() const;
        ~Ab() = default;
        bool Check() const;

    private:
        int z = 0;
};

我目前收到错误:

没有运算符“*”与这些操作数匹配——操作数类型为:* AB

4

2 回答 2

0

使用他在原始问题上写的AndyG的评论解决了这个问题。

包含解决方案的评论:

当您调用moveTestAb 时,编译器将搜索与 Ab::operator () 签名匹配的函数。注意该函数如何不带任何参数 - AndyG

于 2018-12-12T18:16:43.180 回答
0
Ab& operator*(Ab&);

这不允许你这样做*ab。执行此操作时会调用此运算符ab*abhttps://gcc.godbolt.org/z/SDkcgl

Ab *thing_to_return = &Ab(this->a_string);

在这里,您将指针指向一个临时对象。您的代码还有更多问题。我建议逐步重写

于 2018-12-11T21:06:03.480 回答