1

我试过用 Visual Studio 2012 RC 和 Intel C++ Compiler XE 12.1 编译它。如果您尝试使用其他编译器,我将不胜感激。请参阅我在代码中的注释,以真正体会到这个错误的怪异之处。有谁知道发生了什么,我应该在哪里提交关于此的错误报告?

// File: NamedSameA.h

#pragma once

// File: NamedSameA.cpp

#include <vector>

#include "NamedSameA.h"

struct NamedSame // Rename this class to something else to make the program work
{
    std::vector<int> data;
    // Comment out the previous line or change
    // the data type to int to make the program work
};

static NamedSame g_data; // Comment out this line to make the program work

// File: NamedSameB.h

#pragma once

void test();

// File: NamedSameB.cpp

#include <vector>

#include "NamedSameA.h"
#include "NamedSameB.h"

struct NamedSame
{
    int              data1; // Comment out this line to make the program work
    std::vector<int> data2;
};

void test()
{
    NamedSame namedSame;
    namedSame.data2.assign(100, 42);
    // The previous line produces the following runtime error:
    // -------------------------------------------------------
    // Debug Assertion Failed!
    // Program: C:\Windows\system32\MSVCP110D.dll
    // File: c:\program files (x86)\microsoft visual studio 11.0\vc\include\vector
    // Line: 240
    // Expression: vector iterators incompatible
}
4

1 回答 1

14

通过为两个不同的类/结构提供相同的名称,您违反了一个定义规则。这会导致未定义的行为,因此任何结果都是可能的——包括崩溃。

多年来我发现,我越确信自己发现了编译器错误,我的程序就越有可能存在根本缺陷。

于 2012-08-14T15:36:40.960 回答