簡體   English   中英

編譯器/鏈接器錯誤

[英]Compiler/linker error

我正在嘗試使我的程序正常工作(與早期版本不同),我仍然遇到一些編譯器/鏈接器錯誤,我不知道如何解決,有人可以指導我解決鏈接器/編譯器的問題嗎?

這是我得到的構建日志:

-------------- Build: Debug in lab1hwfinal (compiler: GNU GCC Compiler)---------------

mingw32-g++.exe -Wall -fexceptions -g -I..\Documents -c   
C:\Users\Dekkiller\Documents\lab1hwfinal\main.cpp -o obj\Debug\lab1hwfinal\main.o
C:\Users\Dekkiller\Documents\lab1hwfinal\main.cpp: In function 'int main()':
C:\Users\Dekkiller\Documents\lab1hwfinal\main.cpp:19:5: error: 'complexType' was not
declared in this scope
 complexType sum;
 ^
C:\Users\Dekkiller\Documents\lab1hwfinal\main.cpp:19:17: error: expected ';' before 
'sum'
 complexType sum;
             ^
C:\Users\Dekkiller\Documents\lab1hwfinal\main.cpp:26:15: error: 'exit' was not declared 
in this scope
     exit(1);
           ^
C:\Users\Dekkiller\Documents\lab1hwfinal\main.cpp:45:38: error: 'atof' was not declared
in this scope
     realpart= atof(strone.c_str());
                                  ^
C:\Users\Dekkiller\Documents\lab1hwfinal\main.cpp:48:21: error: expected ';' before 
'outpobj'
     complexType outpobj(realpart, imaginarypart);
                 ^
C:\Users\Dekkiller\Documents\lab1hwfinal\main.cpp:51:54: error: 'outpobj' was not 
declared in this scope
     outputfile << "Object " << counter << "-" << outpobj << endl;
                                                  ^
Process terminated with status 1 (0 minute(s), 0 second(s))
6 error(s), 0 warning(s) (0 minute(s), 0 second(s))

這是我的主文件:

#include "Complex.h"
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
using namespace std;

int main()
{
ofstream outputfile;
ifstream inputfile;
string str;
double realpart;
double imaginarypart;
int symbol;
char ch;
string strone;
string strtwo;
complexType sum;
int counter = 0;

inputfile.open("complex.txt");
if(inputfile.fail())
{
    cout << "File opening failed." << endl;
    exit(1);
}

outputfile.open("complexObj.txt");

inputfile >> str;
while(inputfile)
{
    symbol=str.find("+");
    ch = '+';
    if(symbol < 0)
    {
        symbol = str.find("-");
        ch = '-';
    }
    stringstream streamin(str);
    getline(streamin, strone, ch);
    getline(streamin, strtwo, 'i');

    realpart= atof(strone.c_str());
    imaginarypart= atof(strtwo.c_str());

    complexType outpobj(realpart, imaginarypart);
    counter++;

    outputfile << "Object " << counter << "-" << outpobj << endl;

    inputfile.close();
    outputfile.close();

    return 0;
}

}

我的頭文件:

#ifndef COMPLEX_H
#define COMPLEX_H
#include <iostream>


class complexType
{
friend std::ostream& operator<<(std::ostream& os, const complexType& obj);
public:
  complexType();
  complexType(double r, double i);
  complexType operator+(const complexType& objtwo);
private:
    double real;
    double imagine;
};

#endif // COMPLEX_H

這是我的班級cpp文件:

#include "Complex.h"
#include <iostream>
using namespace std;


complexType::complexType()
{
real=0;
imagine=0;
}

complexType::complexType(double r, double i)
{
real=r;
imagine=i;
}

ostream& operator<<(ostream& os, const complexType& obj)
{
os << obj.real << "," << obj.imagine;
return os;
}

complexType complexType::operator+(const complexType& objtwo)
{
complexType sum;
sum.real = real + objtwo.real;
sum.imagine = imagine + objtwo.imagine;
return sum;
}

很抱歉問到類似問題,但我無法弄清楚鏈接器或編譯器出了什么問題。

我覺得complex.h是保留名稱。 嘗試重命名標頭,它應該可以工作。

http://pubs.opengroup.org/onlinepubs/7999959899/basedefs/complex.h.html

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM