使用头文件编译 C++ 程序时出错:体系结构 x86_64 的未定义符号
Posted
技术标签:
【中文标题】使用头文件编译 C++ 程序时出错:体系结构 x86_64 的未定义符号【英文标题】:Error when compiling C++ program with header file: Undefined symbols for architecture x86_64 【发布时间】:2015-04-02 03:22:58 【问题描述】:我正在编写一个程序,它在一个单独的头文件中包含我的函数声明和定义以及一个结构定义。 .cpp 文件和functions.h 文件都位于同一文件夹中。但是,我一直收到臭名昭著的“Undefined symbols for architecture x86_64:”错误。我已阅读有关此错误的许多其他问题,但我无法解决此问题。代码如下:
我正在使用 Mac OSX 中的终端进行编码。我正在运行优胜美地。但是,我将它复制到 Windows 中并在 PuTTY 中运行它,出现了完全相同的错误消息。
对于functions.h头文件:
#ifndef FUNCTIONS_H
#define FUNCTIONS_H
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
struct Books
int ISBN;
string Author;
string Publisher;
int Quantity;
double Price;
;
class functions
public:
void READ_INVENTORY(Books, int, int);
;
// Function definitions
void READ_INVENTORY(Books* list, int max, int position)
cout << "You have chosen to read inventory from a file.\n"
<< "Press ENTER to continue...\n";
cin.get();
ifstream inputFile;
inputFile.open("inventory.dat");
if (!inputFile)
cout << "Error: Input file cannot be found\n";
else
inputFile >> list[position].ISBN;
inputFile >> list[position].Author;
inputFile >> list[position].Publisher;
inputFile >> list[position].Quantity;
inputFile >> list[position].Price;
cout << "The following data was read from inventory.dat:\n\n"
<< "ISBN: " << list[position].ISBN << endl
<< "Author: " << list[position].Author << endl
<< "Publisher: " << list[position].Publisher << endl
<< "Quantity: " << list[position].Quantity << endl
<< "Price: " << list[position].Price << endl << endl;
cout << "Press ENTER to return to the main menu...\n";
cin.get();
#endif
这是 .cpp 文件:
#include <iostream>
#include <string>
#include <fstream>
#include "functions.h"
using namespace std;
int main()
const int MAX_SIZE = 100;
int size, choice;
functions bookstore;
Books booklist[MAX_SIZE];
cout << "Thank you for using Justin's Bookstore Manager\n\n";
do
cout << "Please select a choice from the menu below:\n\n"
<< "\t\t MENU\n"
<< "\t----------------------------\n\n"
<< "\t1: Read inventory from a file\n"
cin >> choice;
size = choice;
switch (choice)
case 1: bookstore.READ_INVENTORY(booklist[choice], MAX_SIZE, size);
break;
default:
cout << "Sorry, that is not a valid selection\n\n";
while (choice != 6);
return 0;
最后,这是完整的错误信息:
架构 x86_64 的未定义符号: “functions::READ_INVENTORY(Books, int, int)”,引用自: _main in bookstore-9693df.o clang:错误:链接器命令失败,退出代码为 1(使用 -v 查看调用)
所以这归结为:这个错误是由程序的编写方式引起的还是由与程序无关的外部冲突引起的?
【问题讨论】:
C++ 不是一种强制纯面向对象编程的语言。以有意义的方式设计你的类,不要仅仅为了保存函数而创建类。 另外,您展示的代码甚至无法编译,因为您传递的是对需要指针的函数的引用。 【参考方案1】:您需要在定义时将 functions:: 放在 READ_INVENTORY() 前面。所以functions.h中的定义看起来像:
void functions::READ_INVENTORY(Books* list, int max, int position)
/* do stuff */
在 .cpp 文件中实现这些功能通常是更好的做法。
【讨论】:
谢谢!这很有帮助,我终于可以编译我的程序了。我才刚刚开始,并且正在从这些乏味的任务中学到很多东西。以上是关于使用头文件编译 C++ 程序时出错:体系结构 x86_64 的未定义符号的主要内容,如果未能解决你的问题,请参考以下文章