我想做的是这样的:

#include <memory>

class autostr : public std::auto_ptr<char>
{
public:
    autostr(char *a) : std::auto_ptr<char>(a) {}
    autostr(autostr &a) : std::auto_ptr<char>(a) {}
    // define a bunch of string utils here...
};

autostr test(char a)
{
    return autostr(new char(a));
}

void main(int args, char **arg)
{
    autostr asd = test('b');
    return 0;
}


(我实际上也有一个auto_ptr类的副本,它也处理数组,但是同样的错误也适用于stl)

使用GCC 4.3.0的编译错误是:

main.cpp:152:错误:没有匹配的函数调用`autostr :: autostr(autostr)'
main.cpp:147:注意:候选者是:autostr :: autostr(autostr&)
main.cpp:146:注意:autostr :: autostr(char *)

我不明白为什么它不匹配autostr参数作为autostr(autostr&)的有效参数。

最佳答案

从函数返回的autostr是临时的。临时值只能绑定到常量引用(const autostr&),但您的引用不是常量。 (“当然是这样。”)

这是一个可怕的想法,几乎没有标准库打算从中继承。我已经在您的代码中看到一个错误:

autostr s("please don't delete me...oops");


std::string怎么了?

09-06 09:24