考虑
auto x=foo(), y;
这合法吗?(我想它是并且暗示它与.y
的类型相同x
。)虽然这个特定示例可能不是很有用,但请考虑
template<typename some_type>
void func(some_type const&x, some_type const&y)
{
for(auto i=std::begin(x),j=std::begin(y); i!=std::end(x) && j!=std::end(y); ) {
...
}
}
在这里,i
andj
都是相同的类型(因为它们都派生自对相同类型对象的相同类型的操作),所以这看起来非常安全和明智,因为它避免声明适当的类型(最好使用decltype()
,即再次通过扣除)。
但是,英特尔的编译器(版本 14.0.1)警告我
warning #3373: nonstandard use of "auto" to both deduce the type from an initializer and to announce a trailing return type
那么,我应该如何看待这个警告呢?这种用法有什么问题auto
吗?
编辑上面剪断的简单代码确实不会触发警告。但是,看起来非常相似的代码:
struct Neighbour { ... };
typedef std::vector<Neighbour> NeighbourList;
NeighbourList const&A;
NeighbourList const&B;
...
const auto K = std::max(A.size(),B.size());
auto k = 0*K;
for(auto iA=A.begin(),iB=B.begin(); k!=K; ++k,++iA,++iB)
...
(for 循环位于类模板的成员方法中)