1

私は3つのファイルを持っています:

SilverLines.h
SilverLines.cpp
main.cpp

SilverLines.cppで私は持っています:

#include "SilverLines.h."

私がしないとき:

#include "SilverLines.h"

main.cppでは、すべてが正常です。プロジェクトがコンパイルされます。

しかし、私がそうするとき:

#include "SilverLines.h"

main.cpp(これを行う必要があります)で、次の2つのエラーが発生します。

致命的なエラー

どうしたの?

>編集:

あなたが要求したように、これは全体の*.hコードです:

#ifndef SILVER_H
#define SILVER_H

#include <iostream>
#include <algorithm>
#include <iterator>
#include <vector>
#include <string>
#include <map>

using namespace std;

typedef unsigned short int u_s_int;

map<string /*phone*/,string /*company*/> companies; // a map of a phone number and its     company
string findCompany(const string& phoneNum); //Given a phone number, the function     returns the right company

//抽象クライアントクラス:

class AbsClient //Abstract Client Class
{
protected:
//string phone_number;
int counter; //CALL DURATION TO BE CHARGED
double charge;
public:
string phone_number; //MOVE TO PROTECTED LATER
void setCharge(double ch) {charge=ch;}
void setCoutner(int count) {counter=count;}
AbsClient(string ph_num): phone_number(ph_num),counter(0), charge(0.0) {} //c'tor     that must be given a phone#.
                                                                            //Initializes the counter and the charge to 0.
virtual void registerCall(string /*phone#*/, int /*minutes*/) = 0; //make a call     and charge the customer
void printReport(string /*phone#*/) const; //prints a minutes report
};

//一時的なクライアントクラス:

class TempClient : public AbsClient //TempClient class (NO DISCOUNT!) 2.3 NIS PER MINUTE, inherits from ABS
{
private:
string company;
public:
//string company;
TempClient(string ph_num, string cmp_name): AbsClient(ph_num), company(cmp_name) {}
virtual void registerCall(string /*phone#*/, int /*minutes*/); //make a call and     charge the customer
//virtual void printReport(string phone) const {cout << "the number of minutes: " << this->counter << endl;}
};

//登録されたクライアントクラス:

class RegisteredClient : public AbsClient //RegisteredClient, 10% DISCOUNT! , inherits from ABS
{
protected:
string name;
string id;
long account; //ACCOUNT NUMBER
private:
static const int discount = 10; //STATIC DISCOUNT OF 10% FOR ALL Registered Clients
public:
RegisteredClient(string ph_num, string n, string i, long acc_num):     AbsClient(ph_num), name(n) , id(i) , account(acc_num) {}
virtual void registerCall(string /*phone#*/, int /*minutes*/); //make a call and     charge the customer
//virtual void printReport(string /*phone#*/) const {cout << "the number of     minutes: " << this->counter << endl;}
};

//VIPクライアントクラス

class VIPClient : public RegisteredClient //VIP Client! X% DISCOUNT! also, inherits from RegisteredClient
{
private: //protected?
int discount; //A SPECIAL INDIVIDUAL DISCOUTN FOR VIP Clients
public:
VIPClient(string ph_num, string n, string i, long acc_num, int X):     RegisteredClient(ph_num,n,i,acc_num), discount(X) {}
virtual void registerCall(string /*phone#*/, int /*minutes*/); //make a call and     charge the customer
//virtual void printReport(string /*phone#*/) const {cout << "the number of     minutes: " << this->counter << endl;}
};

// SilverLines(会社)クラス

class SilverLines // The Company Class
{
protected:
vector<AbsClient*> clients;
vector<string> address_book; //DELETE
public:
//static vector<AbsClient*> clients;
//SilverLines();
void addNewClient(string /*phone#*/);
void addNewClient(string /*phone#*/, string /*name*/ , string /*id*/ , u_s_int     /*importance lvl*/ , long /*account#*/);
void registerCall(string /*phone#*/ , int /*call duration*/);
void resetCustomer(string /*phone#*/); //given a phone#, clear the appropriate     customer's data ('charge' and 'counter')
void printReport(string /*phone#*/) const;

~SilverLines(){
    vector<AbsClient*>::iterator it;
    for(it = clients.begin(); it != clients.end(); ++it)
        delete(*it);
}
};

#endif

paercebalの答え:

コードに複数の問題があります(

名前空間stdを使用します。

1つは)ですが、コンパイルに失敗するのは、ヘッダーでのグローバル変数の宣言です。

map<string /*phone*/,string /*company*/> companies;

ほとんどのソース(少なくともmain.cppとSilverLines.cpp)にこのヘッダーが含まれていると確信しています。

グローバルオブジェクトを1つのソースファイルで定義する必要があります。

// SilverLines.h

extern map<string /*phone*/,string /*company*/> companies;

次に、ヘッダーで(externとして)宣言します。

// global.cpp

extern map<string /*phone*/,string /*company*/> companies;
4

4 に答える 4

0

「SilverLines.h」は、単に宣言するのではなく、実際に何かを定義している可能性があります。エラーメッセージを解読しようとはしませんが:-)

于 2012-08-26T17:51:26.260 に答える
0

コードに別のエラーがある可能性があります。また、メインまたはその他のコードを.hファイルに記述していないことを確認してください。.hファイルには、関数のプロトタイプとそれに続くセミコロンが含まれている必要があります。

于 2012-08-26T17:51:31.163 に答える
0

SilverLines.hが2回含まれているため、複数の定義が存在するようです。Pl。SilverLines.hヘッダーファイルで以下のようなヘッダーガードを使用して、インクルードします。

これは役立つかもしれません。

 #ifndef SILVER_H
 #define SILVER_H

 //Write the contents of SilverLines.h here.

 #endif  // SILVER_H
于 2012-08-26T17:57:01.333 に答える
0

みんなありがとう私はそれを解決しました:

findCompany()現在はグローバル関数であり、その中map<string,string> companiesstaticフィールドです。それは素晴らしいコンパイルです。

于 2012-08-26T19:05:56.870 に答える