1

チェーンを使用して C++ プログラムに取り組んでいて、理由がよくわからないままコンパイルに問題が発生しています。

私が得るエラーは次のとおりです。

Undefined symbols for architecture x86_64:
  "userInputOutput(linearList*, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)", referenced from:
      _main in ccBEoeAc.o
  "chain::chain(int)", referenced from:
      _main in ccBEoeAc.o
ld: symbol(s) not found for architecture x86_64
collect2: ld returned 1 exit status

g++ -c main2.cpp を使用するとコンパイルされますが、そのオプションで何かを隠しているだけではないことを確認したいと思います。

Main2.cpp

#include <iostream>
#include "Chain.h"
#include "IOcode.h"

using namespace std;

int main (){

    //Call constructor, initial capacity 10
    chain *myChain=new chain(10);

    //Print initial chain
    userInputOutput(myChain, "chain");
}

Chain.cpp

 #include "Chain.h"
#include <stdio.h>
#include <iostream>
#include <sstream>
#include "Myexception.h"

using namespace std;

    chain::chain(int initialCapacity)
    {
    cout<<"This method is working"<<endl;
/*  if (initialCapacity <1)
    {
        //throw illegalParameterValue();
    }
    firstNode=NULL;
    listSize=0;
*/
};

IOcode.cpp

#include <iostream>
#include "Linearlist.h"

using namespace std;

void userInputOutput (linearList* l, string dataStructure){

    for (int i = 0; i < 13; i++)
            l->insert(i, i+1);
    cout<<"The initial "<<dataStructure<<" is: ";
    l->traverse();
    cout<<"welcome to the assignmet 3!"<<endl;
    while(true){
       //do stuff

    }
}

なぜこれらのエラーが発生するのか分かりますか? 私が作成した chain.cpp という IOcode ファイルが提供されました。C++ を初めて使用するため、お粗末なコードで申し訳ありません。

4

1 に答える 1

4

1 つのファイルをコンパイルしているだけです。

これは、迅速で汚い試みには問題ないはずです:

g++  main2.cpp Chain.cpp IOcode.cpp 

追加しますが-Wall -Wextra -pedantic -Werror

于 2013-09-27T20:32:15.297 に答える