C++ main.obj:错误LNK2019:C+中未解析的外部符号+;

C++ main.obj:错误LNK2019:C+中未解析的外部符号+;,c++,visual-c++,compiler-errors,C++,Visual C++,Compiler Errors,我知道这个特别的错误已经被提了十几次了。然而,通过我的搜索,我没有找到一个与我的具体情况相关的解决方案 我是一名大学生,学习C++ java语言。我知道最好使用向量而不是数组。我也知道我对指针的理解可能是错误的,我希望你的解释能在这方面对我有所帮助 好的,这是我的三个文件: main.cpp #include <iostream> #include "Arrays.h" // Global variables const int ARRAY_SIZE = 4; const int

我知道这个特别的错误已经被提了十几次了。然而,通过我的搜索,我没有找到一个与我的具体情况相关的解决方案

我是一名大学生,学习C++ java语言。我知道最好使用向量而不是数组。我也知道我对指针的理解可能是错误的,我希望你的解释能在这方面对我有所帮助

好的,这是我的三个文件:

main.cpp

#include <iostream>
#include "Arrays.h"

// Global variables
const int ARRAY_SIZE = 4;
const int MIN_RANGE = 0;
const int MAX_RANGE = 100;

// Main function
int main()
{
    // Create two arrays populated with random numbers
    int* Array1 = createArray(ARRAY_SIZE, MIN_RANGE, MAX_RANGE); // One of these days I'll understand why ponters are so cool
    int* Array2 = createArray(ARRAY_SIZE, MIN_RANGE, MAX_RANGE); // Right now I find them a tad irritating

    // Create the third array
    int* Array3 = mergeArrays(Array1, Array2);

    // Print all arrays with the format "array1[1] + array2[1] = array3[1]"
    for (size_t i = 0; i < ARRAY_SIZE; i++)
    {
        std::cout << Array1[i] << " + " << Array2[i] << " = " << Array3[i] << std::endl << std::endl;
    }

    // Wait for input...
    system("pause");

    return 0;
}
数组.cpp

#include <cstdlib>
#include <ctime>
#include "Arrays.h"

// Function to create an array with n random numbers between 0 and x
int* createArray(int arraySize, int minRange, int maxRange)
{
    srand(time(NULL)); // Generate seed for rand()

    int* Array = new int[arraySize]; // Create a pointer to a new array

    for (size_t i = 0; i < arraySize; i++) // Loop to assign values to each index in the array
    {
        // Generate a random number for each index in the array
        Array[i] = (rand() % maxRange) + minRange;
    }

    return Array;
}

// Function to create an array from two arrays with the associated values added together
int* mergeArrays(int* firstArray, int* secondArray, int arraySize)
{
    int* resultArray = new int[arraySize]; // Create a pointer to a new array

    for (size_t i = 0; i < arraySize; i++) // Loop to assign values to each index in the array
    {
        /* The value at each index in the array is equal to the sum of the values
        at the same index in the other two arrays*/
        resultArray[i] = firstArray[i] + secondArray[i];
    }

    return resultArray;
}

声明和实现之间存在差异

int* mergeArrays(int* firstArray, int* secondArray) //.h
int* mergeArrays(int* firstArray, int* secondArray, int arraySize) //.cpp
您的主函数使用.h文件中的函数,但是,此函数从未实现。 在cpp文件中,您使用相同的名称声明一个函数,但另一个签名(重载)

1>main.obj : error LNK2019: unresolved external symbol "int * __cdecl mergeArrays(int *,int *)" (?mergeArrays@@YAPAHPAH0@Z) referenced in function _main
1>C:\Assignment 2_1\Debug\Assignment 2_1.exe : fatal error LNK1120: 1 unresolved externals
int* mergeArrays(int* firstArray, int* secondArray) //.h
int* mergeArrays(int* firstArray, int* secondArray, int arraySize) //.cpp