1. ホーム
  2. c++

[解決済み] 未解決の外部リンク2019の混乱

2022-02-27 09:46:57

質問

未解決の外部(link2019エラー)を解決しようとしています。この問題についてはStackOverflowに多くの投稿がありますが、私がこのエラーを理解していないのか、それとも私が盲点になっているのか、どちらでしょうか。

エラーの原因は私のgenerate_maze関数(具体的にはrand_neighbor()の呼び出しですね)ですが、私の理解では、これらはすべて"resolved"されています。

かなり冗長なコードなので、少し切り捨てました。 適切だったでしょうか。

void generate_maze (Vector<int> &coords, Grid<bool> &included, Maze &m);

int main() {

    Grid<bool> included = initialize_grid();
    Vector <int> coords = rand_coords();
    Vector <int> current_point = coords;

    generate_maze(coords, included, m);
    return 0;
}

void generate_maze (Vector<int> &coords, Grid<bool> &included,  Maze &m) {
    while (gridIsTrue == false) {
    Vector<int> neighbor = rand_neighbor(coords, included);
    pointT neighborpoint = {neighbor[0], neighbor[1]};
    pointT current_point = {coords[0], coords[1]};
    if (included.get(neighbor[0], neighbor[1]) == false) {m.setWall(current_point, neighborpoint, false); included.set(neighbor[0], neighbor[1], true); current_point = neighborpoint;}
    }
}

Vector<int> rand_neighbor(Vector<int> &coords, Grid<bool> &included) {
    while (1) {
        int randomint;
        randomint = randomInteger(1,4);
        if (randomint == 1) {if (included.inBounds(coords[0], coords[1]+1)) {coords[1] = coords[1]+1; break;}}
        if (randomint == 2) {if (included.inBounds(coords[0], coords[1]-1)){coords[1] = coords[1] -1; break;}}
        if (randomint == 3) {if (included.inBounds(coords[0] -1, coords[1])){coords[0] = coords[0] -1; break;}}
        if (randomint == 4) {if (included.inBounds(coords[0] +1, coords[1])){coords[0] = coords[0] + 1; break;}}
                }
        return coords;

エラーです。

error LNK2019: unresolved external symbol "class Vector<int> __cdecl rand_neighbor(class Vector<int>,class Grid<bool> &)" (?rand_neighbor@@YA?AV?$Vector@H@@V1@AAV?$Grid@_N@@@Z) referenced in function "void __cdecl generate_maze(class Vector<int> &,class Grid<bool> &,class Maze &)" (?generate_maze@@YAXAAV?$Vector@H@@AAV?$Grid@_N@@AAVMaze@@@Z)
1>C:\Users\com-user\Desktop\New folder\maze\assign3-maze-PC\Maze\Debug\Maze.exe : fatal error LNK1120: 1 unresolved externals

解決方法は?

素敵なWeb C++デマングラーを使用する こちら 未定義参照 ?rand_neighbor@@YA?AV?$Vector@H@@V1@AAV?$Grid@_N@@@Z という意味です。 class Vector __cdecl rand_neighbor(class Vector,class Grid &) . エラーメッセージには、パラメータがありません。

さて、関数の宣言と定義の違いがわかりましたか?

class Vector __cdelc rand_neighbor(class Vector,class Grid &);
Vector<int> rand_neighbor(Vector<int> &coords, Grid<bool> &included) { /* ... */}

少し正規化させてください。

Vector<int> rand_neighbor(Vector<int>, Grid<bool> &);
Vector<int> rand_neighbor(Vector<int> &, Grid<bool> &) { /* ... */}

リファレンスを忘れています( & ) を関数のプロトタイプに追加してください。したがって、あなたの定義は別の関数である。