我想做的是:
#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: error: no matching function for call to `autostr::autostr(autostr)' main.cpp:147: note: candidates are: autostr::autostr(autostr&) main.cpp:146: note: autostr::autostr(char*)
我不明白为什么它不能将autostr参数作为autostr(autostr&amp;)的有效参数。
答案 0 :(得分:1)
从函数返回的autostr
是临时的。临时值只能绑定到引用到const(const autostr&
),但是您的引用是非const的。 (并且“正确地如此”。)
这是一个可怕的想法,几乎没有任何标准库可以继承。我已经在你的代码中看到了一个错误:
autostr s("please don't delete me...oops");
std::string
出了什么问题?