3
#include <iostream>
#include <boost/shared_ptr.hpp>

using namespace std;

class A
{

    public:
        const shared_ptr<const int> getField () const
        {
            return field_;
        }

    private:
        shared_ptr<int> field_;
};

void f(const A& a)
{
    auto  v = a.getField(); //why auto doesn't a const shared_ptr<const int> here ?
    v.reset(); //OK: no compile error
}

int main()
{
    A a;
    f(a);
    std::cin.ignore();
}

在上面的代码中,为什么编译器将v的类型推断为shared_ptr<int>而不是const shared_ptr<const int>getField 返回的类型?

编辑: MSVC2010

4

2 回答 2

8

auto忽略引用和顶级consts。如果你想让他们回来,你必须这样说:

const auto v = a.getField();

请注意,它会getField返回field_. 你确定你不想参考const吗?

const shared_ptr<int>& getField () const;

auto& v = a.getField();
于 2012-01-21T15:02:12.700 回答
0

在新的 C++11 标准中,我认为auto在此上下文中使用的关键字被编译器替换为a.getField()返回的任何类型。这是程序员的捷径。

请参阅http://en.wikipedia.org/wiki/C%2B%2B11#Type_inference

于 2012-01-21T15:07:49.893 回答