gpt4 book ai didi

c++ - 类不存在默认构造函数的错误

转载 作者:行者123 更新时间:2023-11-30 03:44:41 48 4
gpt4 key购买 nike

我正在开发一个程序,该程序应该解析命令行输入、读取输入文本文件,然后执行测试文件中指定的一系列步骤。

在分词器类上工作了一段时间后,我遇到了瓶颈,即一个错误,我不太确定如何解决。

所以,我有 Tokenizer.h:

#ifndef _TOKENIZER_GUARD
#define _TOKENIZER_GUARD 1
#include <string>
#include <cstdlib>
#include <climits>
#include <cfloat>
#include <iostream>
#include <fstream>

#include "Token.h"

//
// A class to create a sequence of tokens from an input file stream.
//
class Tokenizer
{
public:
Tokenizer(const std::string&, std::ostream&);
Tokenizer(Tokenizer&); // Copy Constructor -I
virtual ~Tokenizer();

virtual int nextInt();
virtual bool hasNextInt() const;
virtual long nextLongInt();
virtual bool hasNextLongInt() const;
virtual float nextFloat();
virtual bool hasNextFloat() const;
virtual std::string next();
virtual bool hasNext() const;
Tokenizer& operator= (Tokenizer&); // overloaded equals operator

protected:

private:
Tokenizer();
std::ifstream stream;
std::ostream _os;
Token _token;
};

#endif

和 Tokenizer.cpp:

#include <string>
#include <cstdlib>
#include <climits>
#include <cfloat>
#include <iostream>
#include <fstream>

#include "Tokenizer.h"

Tokenizer::Tokenizer()
{ //error occurs here

}
// Constructor
Tokenizer::Tokenizer(const std::string& s, std::ostream& o)
{ //error occurs here
stream.open(s);
std::string t;
getline(stream, t, ' ');
_token = Token(t);
}


// Copy Constructor
Tokenizer::Tokenizer(Tokenizer& t) :_token(t._token), stream(t.stream), _os(t._os)
{

}


// Destructor
Tokenizer::~Tokenizer()
{
stream.close();
}

// Saves current int to return, then moves _token to the next value
int Tokenizer::nextInt()
{
int temp = _token.toInteger();
std::string t;
getline(stream, t, ' ');
_token = Token(t);
return temp;
}

// Checks to see if there is a next value and if it is an int
bool Tokenizer::hasNextInt() const
{
return _token.isInteger() && hasNext();
}

// same as nextInt but long -I
long Tokenizer::nextLongInt()
{
long temp = _token.toLongInteger();
std::string t;
getline(stream, t, ' ');
_token = Token(t);
return temp;
}

// same as hasNextInt but Long
bool Tokenizer::hasNextLongInt() const
{
return _token.isLongInteger() && hasNext();
}

// same as nextInt but Float
float Tokenizer::nextFloat()
{
float temp = _token.toFloat();
std::string t;
getline(stream, t, ' ');
_token = Token(t);
return temp;
}

// same as hasNextInt but float
bool Tokenizer::hasNextFloat() const
{
return _token.isFloat() && hasNext();
}

//Returns the next token
std::string Tokenizer::next()
{
std::string temp = _token.get();
std::string t;
getline(stream, t, ' ');
_token = Token(t);
return temp;
}

//True when it is not the end of the file
bool Tokenizer::hasNext() const
{
return stream.eofbit != 1;
}

//Overloaded = operator
Tokenizer& Tokenizer::operator= (Tokenizer& t)
{
_token = t._token;
stream = t.stream;
_os = t._os; //error occurs here
}

我得到了错误

'std::basic_ostream>': no appropriate default >constructor available

为构造函数。稍后,当我使用 'stream = t.stream' 和 '_os = t._os' 时出现错误

function "std::basic_ostream<_Elem, _Traits>::operator=(const >std::basic_ostream<_Elem, _Traits>::_Myt &) [with _Elem=char, >_Traits=std::char_traits]" (declared at line 85 of >"x:\Visual\VC\include\ostream") cannot be referenced -- it is a deleted >function

我一直在尝试为第一个错误找到某种解决方案,但我不明白是什么导致了它。有人向我建议创建一个复制构造函数,但它似乎并没有解决这个问题。我还在下面包含了 Token.h。

#ifndef _TOKEN_GUARD
#define _TOKEN_GUARD 1

#include <string>
#include <cstdlib>
#include <climits>
#include <cfloat>

//
// Token class
//
class Token
{
public:
Token(const std::string& t) : _token(t) { }

virtual std::string get() const { return _token; }

virtual long toLongInteger() const;
virtual bool isLongInteger() const;
virtual int toInteger() const; // for int and is int functions
virtual bool isInteger() const; //
virtual float toFloat() const;
virtual bool isFloat() const;
virtual bool isNonNumeric() const;
Token() : _token("") {}
std::string _token;
protected:

};

#endif

如果我过于含糊或类似的话,我提前道歉。我非常乐意提供任何其他需要的东西(因为我现在卡住了)。

最佳答案

编译错误信息很清楚。当您使用时:

Tokenizer::Tokenizer(const std::string& s, std::ostream& o)
{ //error occurs here
stream.open(s);
std::string t;
getline(stream, t, ' ');
_token = Token(t);
}

成员变量os_是默认构造的。由于std::ostream中没有默认构造函数,os_无法初始化。

我猜你的意思是用Tokenizer的构造函数的输入参数来初始化成员变量os_,比如:

Tokenizer::Tokenizer(const std::string& s, std::ostream& o) : os_(o) 
{
...

即使这样也行不通,因为 std::ostream 没有复制构造函数。您需要将成员变量更改为引用对象。

std::ostream& os_;

然后,您可以安全地使用:

Tokenizer::Tokenizer(const std::string& s, std::ostream& o) : os_(o) 
{
...

您只需确保输入参数 oTokenizer 被销毁之前没有被销毁。否则,Tokenizer 对象将留下悬空引用。

关于c++ - 类不存在默认构造函数的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35307756/

48 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com