链接器错误2001未解析的外部符号

时间:2014-07-30 02:14:40

标签: c++ vector stl linker linker-errors

我以前从来没有遇到这样的错误,请记住我还在上学,所以我很久没有这么做了。

我得到的错误是:

  

错误1错误LNK2001:未解析的外部符号“private:static class std :: vector> Job :: names”(?names @ Job @@ 0V?$ vector @ PBDV?$ allocator @ PBD @ std @@@ std @@ A)Job.obj PayrollCalculator

     

错误2错误LNK2001:未解析的外部符号“private:static class std :: vector> Job :: percentBased”(?percentBased @ Job @@ 0V?$ vector @ _NV?$ allocator @ _N @ std @@@ std @@ A)Job.obj PayrollCalculator

     

错误3错误LNK2001:未解析的外部符号“private:static class std :: vector> Job :: pay”(?pay @ Job @@ 0V?$ vector @ MV?$ allocator @ M @ std @@@ std @@ A)Job.obj PayrollCalculator

我不知道从哪里开始这样的错误,所以如果任何人可以提供帮助。 以下是相关代码,如果有帮助:

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];
}

如果重要的话,我也会使用2013年的视觉工作室。

1 个答案:

答案 0 :(得分:3)

您只在Job.h文件中声明names, percentBased, pay,您需要定义 Job.cpp中的那些静态变量

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

Job::Job()
{
//.....
相关问题