简体   繁体   中英

linker error 2001 unresolved external symbols

I have never gotten errors like this before, keep in mind that I am still in school so I have not been doing this very long.

The error that I am getting is:

Error 1 error LNK2001: unresolved external symbol "private: static class std::vector > Job::names" (?names@Job@@0V?$vector@PBDV?$allocator@PBD@std@@@std@@A) Job.obj PayrollCalculator

Error 2 error LNK2001: unresolved external symbol "private: static class std::vector > Job::percentBased" (?percentBased@Job@@0V?$vector@_NV?$allocator@_N@std@@@std@@A) Job.obj PayrollCalculator

Error 3 error LNK2001: unresolved external symbol "private: static class std::vector > Job::pay" (?pay@Job@@0V?$vector@MV?$allocator@M@std@@@std@@A) Job.obj PayrollCalculator

I don't know where to start with an error like this so if any one can help. Here is the related code if that will help:

stdafx.h:

#include "targetver.h"
#include <stdio.h>
#include <tchar.h>
#include <string>
#include <iostream>
#include <limits>
#include <vector>

Job.h:

#include "stdafx.h"
class Job
{
public:
    Job();
    Job(const char*);

    const char* getName();
    float getPay();
private:
    static std::vector<const char*> names;
    static std::vector<bool> percentBased;
    static std::vector<float> pay;
    short jobType = -1;

    void defineNew(const char*);
    void setPay();
};

Job.cpp

#include "stdafx.h"
#include "Job.h"

Job::Job()
{
    // Predefined jobs
    const char* jobs[] = {/*Enter names of jobs here*/ "agent", "lawyer", "pa", "trainer" };
    bool percentPays[] = {/*Enter weather jobs base pay off a percentage of the employers income here*/ true, true, true, true };
    float pays[] = {/*Enter the percentage or base pay for each job here*/ (float).07, (float).1, (float).03, (float).05 };

    // Initilize Vectors
    names.assign(jobs, jobs + sizeof(jobs));
    percentBased.assign(percentPays, percentPays + sizeof(percentPays));
    pay.assign(pays, pays + sizeof(pays));
}

Job::Job(const char* jobName)
{
    // Test to see if the inputed job type is alrady defined
    for (unsigned int i = 0; i <= names.size(); i++)
    {
        if (jobName == names[i])
        {
            jobType = i;
            break;
        }
    }

    // Define new job
    if (jobType < 0)
    {
        defineNew(jobName);
        jobType = names.size() + 1;
    }
}

void Job::defineNew(const char* newName)
{
    // Add job to list of jobs
    names.push_back(newName);

    // Determine if job pay is based of percentage of employers income
    std::cout << "The entered job title is not predefined.\n"
              << "Dose the job " << newName << " have a pay based on a percentage of the employer's Income? [y/n] ";
    for (;;)
    {
        // Get input
        std::string input;
        std::getline(std::cin, input);
        // Convert input into useable data
        for (std::string::iterator it = input.begin(); it != input.end(); it++)
        {
            if (isalpha(*it) && isupper(*it)) *it = tolower(*it);
        }

        // Test input if yes job is percent based pay other wise no
        if (input == "yes" || input == "y")
        {
            percentBased.push_back(true);
            break;
        }
        else if (input == "no" || input == "n")
        {
            percentBased.push_back(false);
            break;
        }
        else
        {
            std::cout << "Invalid Input! Enter only yes or no.\n"
                      << "Dose the job " << newName << " have a pay based on a percentage of the employer's income? [y/n] ";
        }
    }

    setPay();
}

void Job::setPay()
{
    // Set new pay
    if (percentBased.back())
    {
        std::cout << "Enter the percentage of the employer's income the pay is based on: ";
    }
    else
    {
        std::cout << "Enter the jobs base pay: ";
    }

    for (;;)
    {
        // Get input
        std::string input;
        std::getline(std::cin, input);
        // Convert input to useable data
        bool goodInput = true, decimal = false;
        for (std::string::iterator it = input.begin(); it != input.end(); it++)
        {
            if (ispunct(*it) && !decimal)
            {
                decimal = true;
            }
            else if (!isalnum(*it))
            {
                goodInput = false;
            }
            else
            {
                std::cout << "Invalid Input! Input only numbers.\n"
                          << "Enter a number greater than 0: ";
            }
        }

        // Add pay information if good
        float tempPay = std::stof(input);
        if (goodInput && percentBased.back() && (tempPay >= 0 && tempPay < 1))
        {
            pay.push_back(tempPay);
            break;
        }
        else if (goodInput && percentBased.back() && !(tempPay >= 0 && tempPay < 1))
       {
            std::cout << "Invalid Input! Input only numbers between 0 and 1.\n"
                      << "Enter percentage greater than 0 and less than 1: ";
        }
        else if (goodInput && !percentBased.back() && tempPay >= 0)
        {
            pay.push_back(tempPay);
            break;
        }
        else if (goodInput && !percentBased.back() && tempPay < 0)
        {
            std::cout << "Invalid Imput! Input only numbers greater than 0.\n"
                      << "Enter a base pay greater than 0: ";
        }
    }
}

const char* Job::getName()
{
    return names[jobType];
}

float Job::getPay()
{
    return pay[jobType];
}

I am also using visual studios 2013 if that matters.

You only declared names, percentBased, pay in Job.h file, You need to define those static variables in Job.cpp

std::vector<const char*> Job::names;
std::vector<bool> Job::percentBased;
std::vector<float> Job::pay;

Job::Job()
{
//.....

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM