我在 SUSE Enterprise Linux 11 上使用 GCC 4.7.2 和 Boost 1.58.0。我有以下代码片段,它基本上通过一个多边形列表来计算它们的长度/宽度。将 'auto' 关键字与 std::minmax 函数一起使用时,我看到了奇怪的输出。为了比较,我还声明了第二个变量,其中明确声明了类型(即,dim 与 dim1)。
namespace gtl = boost::polygon;
typedef gtl::polygon_90_data<int> LayoutPolygon;
typedef gtl::rectangle_data<int> LayoutRectangle;
static LayoutFeatureVec
calc_stats(LayoutPolygonSet const& lp)
{
LayoutFeatureVec v;
LayoutFeature f;
LayoutRectangle y;
for (LayoutPolygon const& p : lp) {
// Compute bounds.
gtl::extents(y, p);
// Get width/length (shorter/longer).
// FIXME: Why does this not work with auto??
cout << gtl::delta(y, gtl::HORIZONTAL) << " " << gtl::delta(y, gtl::VERTICAL) << endl;
auto dim = std::minmax(gtl::delta(y, gtl::HORIZONTAL),
gtl::delta(y, gtl::VERTICAL));
std::pair<int, int> dim1 = std::minmax(gtl::delta(y, gtl::HORIZONTAL),
gtl::delta(y, gtl::VERTICAL));
cout << dim.first << " " << dim.second << endl;
cout << dim1.first << " " << dim1.second << endl;
<snip>
v.push_back(f);
}
return v;
}
对于此循环的第一次迭代,预期的输出是正确的。
380 420
380 420
380 420
但是,如果我注释掉“dim1”并重新运行相同的代码(即,只有自动变暗),我会在 std::minmax 中得到奇怪的结果。
380 420
140737295994126 140737295994126
我在这里做错了什么?
这是最小的示例(根据下面的答案进行编辑)。
#include <iostream>
#include <algorithm>
#include <boost/polygon/polygon.hpp>
using namespace std;
namespace gtl = boost::polygon;
using namespace gtl::operators;
int main(int argc, char** argv)
{
gtl::rectangle_data<int> x(0,0,5,5);
auto dim = std::minmax(gtl::delta(x, gtl::HORIZONTAL), gtl::delta(x, gtl::VERTICAL));
cout << dim.first << " " << dim.second << endl;
return 0;
}