我不知道为什么我不能从头文件中的 .cpp 文件中访问函数 clearConsole(),我想我说错了吗?如何从头文件定位主文件?在用户输入 customer.h 中的 addCustomer() 函数后,我尝试调用 clearConsole() 函数。
主文件
// OTS.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
#include <fstream>
#include <iomanip>
#include <string>
using namespace std;
#include "customer.h"
// Clear function specific to Windows
// Cross platform alternatives are more convoluted to reach desired effect, so have not been included
void clearConsole()
{
#ifdef _WIN32
system("cls");
#endif
}
客户.h
//customer.H
//The object class customer
class customer
{
//...
clearConsole();
}