尝试使用标题链接两个cpp文件

时间:2013-04-23 03:47:40

标签: class visual-c++ header linker-errors

我正在尝试从另一个cpp文件中的cpp文件(带有函数列表)调用函数,我正在使用头文件在两个cpp文件中设置函数原型,我的问题是我'我收到此LNK2019错误。我不知道我做错了什么。我一直在几个变化之间来回走动,根据我所读到的内容,现在似乎是最正确的。我已经工作了几个小时,阅读了一堆线程,但似乎没有解释这个问题,我正在使用microsoft visual studio 2012

这是头文件Rectangle.h

#pragma once
class Rectangle
{
private:
    int width, height; 
    double gravWidth, gravHeight;
public:
    Rectangle();
    double getAreaBig();
    double getAreaSmall();
    int getPerimeter();
    void getLength(int b);
    void getWidth(int a);
    int setLength();
    int setWidth();

    ~Rectangle();
};

这是包含函数Rectc.cpp

的cpp文件
#include <iostream>
#include "Rectangle.h"


using namespace std;


Rectangle::Rectangle()
{
    width = 1;
    height = 1;
    gravWidth = .5;
    gravHeight = .5;
}
double Rectangle::getAreaBig ()
{
    return double ((width * height) - (gravWidth *  gravHeight));
}

double Rectangle::getAreaSmall()
{
    return ((gravWidth) * ( gravHeight));
}

int Rectangle::getPerimeter()
{
    return (2 * (width + height));
}

void Rectangle::getLength(int b)
{
    height = b;
    gravWidth = (1/2 * width);
}
void Rectangle::getWidth(int a)
{
    width = a;
    gravHeight = (1/2 * height);
}

int Rectangle::setLength()
{
    return height;
}
int Rectangle::setWidth()
{
    return width;
}

以下是app.cpp文件,这是我得到错误的地方,斜体也是错误似乎指向的地方

#include <iostream>
#include "Rectangle.h"
#include <fstream>
#include <iomanip>
#include <cstdlib>
#include <cmath>
#include <string>
#include <sstream>
#include <cstddef> 

using namespace std;

int main ()
{
    int const  WIDTH = 10;
    setprecision(2);

    int length = 0;
    int width = 0;

    cin >> width;
    cin >> length;

    Rectangle garden;
    Rectangle gravel;


    garden.getLength(length);
    garden.getWidth(width);

    cout << "Length of lawn: " << garden.setLength() << "Width of lawn: " << garden.setWidth();
    cout << "Cost of grass: " << garden.getAreaBig();
    cout << "Length of gravel: ";
    cout << "Width of gravel: ";
    cout << "Cost of gavel: ";
    system ("pause");


}

2 个答案:

答案 0 :(得分:0)

我看到的第一件事是你没有实例化矩形。

答案 1 :(得分:0)

如何定义

  

〜矩形();

某处?如果你的析构函数不会做任何事情,你可以在头文件中提供一个空体。

  

~Rectangle(){};

(以防万一,让它成为虚拟,它总是一个好习惯。)