I want to open a file in a class constructor. It is possible that the opening could fail, then the object construction could not be completed. How to handle this failure? Throw exception out? If this is possible, how to handle it in a non-throw constructor?
|
If an object construction fails, throw an exception. The alternative is awful. You would have to create a flag if the construction succeeded, and check it in every method. |
|||||||
|
|
My suggestion for this specific situation is that if you don't want a constuctor to fail because if can't open a file, then avoid that situation. Pass in an already open file to the constructor if that's what you want, then it can't fail... |
|||||||||
|
Yes.
Your options are:
In short, C++ is designed to provide elegant solutions to these sorts of issues: in this case exceptions. If you artificially restrict yourself from using them, then don't expect there to be something else that does half as good a job. (P.S. I like passing variables that will be modified by pointer - as per |
||||
|
|
|
I want to open a file in a class constructor. Almost certainly a bad idea. Very few cases when opening a file during construction is appropriate. It is possible that the opening could fail, then the object construction could not be completed. How to handle this failure? Throw exception out? Yep, that'd be the way. If this is possible, how to handle it in a non-throw constructor? Make it possible that a fully constructed object of your class can be invalid. This means providing validation routines, using them, etc...ick |
|||||||||||||||||||||
|
|
One way is to throw an exception. Another is to have a 'bool is_open()' or 'bool is_valid()' functuon that returns false if something went wrong in the constructor. Some comments here say it's wrong to open a file in the constructor. I'll point out that ifstream is part of the C++ standard it has the following constructor:
It doesn't throw an exception, but it has an is_open function:
|
|||||
|
|
A constructor may well open a file (not necessarily a bad idea) and may throw if the file-open fails, or if the input file does not contain compatible data. It is reasonable behaviour for a constructor to throw an exception, however you will then be limited as to its use.
You can handle it without an exception by leaving the object in a "failed" state. This is the way you must do it in cases where throwing is not permitted, but of course your code must check for the error. |
|||
|
|
|
it depends. you haven't described your concrete case, and general answer will only fit that concrete case by happenchance. cheers & hth., |
|||
|
|
|
This is wrong. Don't open a file in the constructor. Create a seperate function, for example Init(), and call it after constructing the object. In general, constructors should do basic initialization, which should not fail. It is even better to do dynamic members memory allocations in a separate initialization [boolean] function. |
|||||||||||||||||||||
|
