I've got a problem with this code:
#include <fstream>
struct A
{
A(std::ifstream input)
{
//some actions
}
};
int main()
{
std::ifstream input("somefile.xxx");
while (input.good())
{
A(input);
}
return 0;
}
G++ outputs me this:
$ g++ file.cpp
file.cpp: In function `int main()':
file.cpp:17: error: no matching function for call to `A::A()'
file.cpp:4: note: candidates are: A::A(const A&)
file.cpp:6: note: A::A(std::ifstream)
After changing it to this it compile (but that is not solving the problem):
#include <fstream>
struct A
{
A(int a)
{
//some actions
}
};
int main()
{
std::ifstream input("dane.dat");
while (input.good())
{
A(5);
}
return 0;
}
Can someone explain me what's wrong and how to fix it? Thanks.
Streams are non copyable.
So you need to pass by reference.
ifstream
does not have a copy constructor.A(std::ifstream input)
means "constructor forA
taking anifstream
by value." That requires the compiler to make a copy of the stream to pass to the constructor, which it can't do because no such operation exists.You need to pass the stream by reference (meaning, "use the same stream object, not a copy of it.") So change the constructor signature to
A(std::ifstream& input)
. Note the ampersand, which means "reference" and, in the case of function parameters, means "pass this parameter by reference rather than by value.Stylistic note: The body of your
while
loop,A(input);
, constructs a structure of typeA
, which is then almost immediately destroyed when thewhile
loop loops. Are you sure this is what you want to do? If this code is complete, then it would make more sense to make this a function, or a member function ofA
that is constructed outside the loop:OR
Two bugs:
ifstream
is not copyable (change the constructor parameter to a reference).A(input);
is equivalent toA input;
. Thus the compiler tries to call the default constructor. Wrap parens around it(A(input));
. Or just give it a nameA a(input);
.Also, what's wrong with using a function for this? Only the class's constructor is used it seems, which you seem to abuse as a function returning
void
.