在Visual Studio中为函数定义和头文件编译单独的.cpp文件

时间:2014-11-29 21:04:22

标签: c++ visual-studio visual-studio-2012

我有两个文件,Book.h(头文件)和Book.cpp。头文件包含我的Book类的函数头。我已将函数体放在Book.cpp文件中。

我只是想编译Book.cpp文件。当我尝试时,我得到了一些错误,说'重载函数只有来自'类型 Book :: functionName(void)的返回类型

我已将头文件包含在Book.cpp文件中,如下所示。我不明白缺少什么。我在网上搜索过,但是每个编译器似乎都在一起编译多个文件。

注意:我还尝试添加另一个名为menu.cpp的.cpp,其中包含我的main。在这个主要内容中,我只是尝试实例化一个book对象,但编译器无法识别我的Book类或其任何成员函数....

以下是Book.cpp的内容:

#include "Book.h"
#include <string>

using namespace std;

    static const int CHECK_OUT_LENGTH = 21;
    Book::Book(){
        idCode = "";
        title = "";
        author = "";
    };
    Book::Book(std::string idc, std::string t, std::string a){
        idCode = idc;
        title = t;
        author = a;
    };
    int Book::getCheckOutLength(){
        return CHECK_OUT_LENGTH;
    };
    std::string Book::getIdCode(){
        return idCode;
    };
    std::string Book::getTitle(){
        return title;
    };
    std::string Book::getAuthor(){
        return author;
    };
    Locale Book::getLocation(){
        return location;
    };
    void Book::setLocation(Locale lo){
        location = lo;
    };
    Patron* Book::getCheckedOutBy(){
        return checkedOutBy; //will return the address of the current patron who has checked out the book
    };
    void Book::setCheckedOutBy(Patron* p){
         checkedOutBy = p; //will set the address of checkedOutBy pointer to the adress of the pointer p  
    };
    Patron* Book::getRequestedBy(){
        return requestedBy;
    };
    void Book::setRequestedBy(Patron* p){
        requestedBy = p;
    };
    int Book::getDateCheckedOut(){
        return dateCheckedOut;
    };
    void Book::setDateCheckedOut(int d){
        dateCheckedOut = d;
    };

以下是Book.h的内容:

#ifndef examples_Book_h
#define examples_Book_h


class Patron;

enum Locale {ON_SHELF, ON_HOLD, CHECKED_OUT};

class Book
{
private:
    std::string idCode;
    std::string title;
    std::string author;
    Locale location;
    Patron* checkedOutBy;
    Patron* requestedBy;
    int dateCheckedOut;
public:
    static const int CHECK_OUT_LENGTH = 21;
    Book();
    Book(std::string idc, std::string t, std::string a);
    int getCheckOutLength();
    std::string getIdCode();
    std::string getTitle();
    std::string getAuthor();
    Locale getLocation();
    void setLocation(Locale lo);
    Patron* getCheckedOutBy();
    void setCheckedOutBy(Patron* p);
    Patron* getRequestedBy();
    void setRequestedBy(Patron* p);
    int getDateCheckedOut();
    void setDateCheckedOut(int d);
};

#endif

以下是我可怜的小功能的内容:

#include<iostream>
#include "Book.h" //why won't this work?

using namespace std;

int main(){
    Book myBook;



    return 0;

}

1 个答案:

答案 0 :(得分:0)

在评论之后:在标题中,确保已声明或定义了所有使用的类型,在这种情况下包括。并且,确保找到包含的文件。