Ошибка при компиляции программы C++ с заголовочным файлом: неопределенные символы для архитектуры x86_64
Я пишу программу, в которой мои объявления функций и определения находятся в отдельном заголовочном файле вместе с определением структуры. И файл.cpp, и файл functions.h находятся в одной папке. Тем не менее, я постоянно получаю печально известную ошибку "Неопределенные символы для архитектуры 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 в bookstore-9693df.o clang: error: сбой команды компоновщика с кодом выхода 1 (используйте -v для просмотра вызова)
Итак, вот к чему это сводится: эта ошибка вызвана тем, как написана программа, или внешним конфликтом, не связанным с программой?
1 ответ
Вам нужно поместить функции:: перед READ_INVENTORY(), когда вы ее определяете. Таким образом, определение в functions.h будет выглядеть так:
void functions::READ_INVENTORY(Books* list, int max, int position)
{
/* do stuff */
}
Обычно лучше реализовать эти функции в файле.cpp.