我正在阅读Deitel关于C ++的书:如何编程。
在一个特定部分(第3.9节)中,他们解释了接口和实现的概念。他们还提供了巩固这一概念的示例代码。
虽然我或多或少地理解了分离接口和实现背后的根本原因,但我无法获得示例代码来执行。示例代码由3个文件组成:
1)GradeBook.h
// GradeBook.h
// GradeBook class definition. This file presents GradeBook's public
// interface without revealing the implementations of GradeBook's member
// functions, which are defined in gradebook.3.12.cpp
#include <string> // class GradeBook uses C++ standard string class
using std::string;
// GradeBook class definition
class GradeBook
{
public:
GradeBook( string ); // constructor that initializes courseName
void setCourseName( string ); // function that sets the course name
string getCourseName(); // function that gets the course name
void displayMessage(); // function that displays a welcome message
private:
string courseName; // course name for this GradeBook
}; // end class GradeBook
2)成绩册.3.12.cpp
// Fig 3.12: GradeBook.cpp
// GradeBook member-function definitions. This file contains
// implementations of the member functions prototyped in GradeBook.h
#include <iostream>
using std::cout;
using std::endl;
#include <string>
using std::string;
#include "GradeBook.h"
// constructor initializes courseName with string supplied as argument
GradeBook::GradeBook( string name )
{
setCourseName( name ); // call set function to initialize courseName
} // end GradeBook constructor
// function to set the course name
void GradeBook::setCourseName( string name )
{
courseName = name; // store the course name in the object
} // end function setCourseName
// function to get the course name
string GradeBook::getCourseName()
{
return courseName; // return object's courseName
}// end function getCourseName
// display a welcome message to the GradeBook user
void GradeBook::displayMessage()
{
// call getCourseName to get the courseName
cout << "Welcome to the grade book for\n" << getCourseName()
<< "!" << endl;
} // end function displayMessage
3)成绩册.3.13.cpp
// GradeBook class demonstration after separating its interface from its implementation
#include <iostream>
using std::cout;
using std::endl;
#include "GradeBook.h" // include definition of class GradeBook
// function main begins program execution
int main()
{
// create two GradeBook objects
GradeBook gradeBook1(" CS101 Intro to C++ programming ");
GradeBook gradeBook2("CS102 Data Structures in C++");
// display initial value of courseName for each GradeBook
cout << "gradeBook1 created for course: " << gradeBook1.getCourseName()
<< "\ngradeBook2 created for course: " << gradeBook2.getCourseName()
<< endl;
return 0;
}
要执行和获得类似于Deitel书中所示的输出,我必须运行文件号3. o / p应该是“CS101 Intro to C ++ programming”,然后是“CS101 Intro to C ++ programming”on a换行符。
但是在运行此文件时,我收到以下错误消息 -
Undefined symbols:
"GradeBook::GradeBook(std::basic_string<char, std::char_traits<char>,std::allocator<char> >)", referenced from:
_main in ccaOv3rj.o
_main in ccaOv3rj.o
"GradeBook::getCourseName()", referenced from:
_main in ccaOv3rj.o
_main in ccaOv3rj.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
请解释发生了什么。我查阅了有关界面和实现的其他帖子 - 发布解决方案的人表示必须包含主要功能。但我认为这不是问题所在。还有其他事情发生在我身上,我无法弄明白......可能不是CS专业。
纽迪,非常感谢。
答案 0 :(得分:2)
猜测,您没有链接通过编译成绩簿.cpp文件生成的.o文件。尝试:
g++ gradebook.3.13.cpp gradebook.3.12.cpp -o myprog
另外,在文件名中使用小写字母是个好主意,所以你的标题应该是gradebook.h,而不是GradeBook.h,但是这不会导致你得到的错误,来自链接器。文件名中的那些数字(我认为是练习号)只能在长期内混淆 - 我会为每个练习创建单独的目录。
答案 1 :(得分:1)
看起来您只是编译gradebook.3.13.cpp
,而不包括gradebook.3.12.cpp
中的功能。这些错误消息意味着链接器无法找到GradeBook
类的函数。
如果您使用的是g++
,请参阅Neil Butterworth的答案,详细了解如何将这两个文件编译并链接到可执行文件中。对于其他环境,请查看文档以确定如何将所有源文件添加到“项目”或“工作区”,或者环境用于一起收集文件的任何内容。