Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6952947
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:24:54+00:00 2026-05-27T14:24:54+00:00

I would like to implement a class with the help of RAII. The resources

  • 0

I would like to implement a class with the help of RAII. The resources should be acquired in the constructor, but it’s possible that the acquistition failed. I’ll give an example in the following using FILE:

class file {
public:
    file(const char* filename) {
        file_ = fopen(filename, "w+");
        if(!file_) {
          // Okay
        }
        else {
          // ERROR
        }
    }

    ~file() {
        if (fclose(file_)) {
           // ERROR
        }
    }

    void write(const char* str) {
        if (EOF == fputs(str, file_)) {
            throw runtime_error("file write failure");
        }
    }
private:
    FILE* file_;
};

So, what’s the best way to handle an error which is occurred if fopen returns NULL? Because it’s the constructor I can’t return also NULL.

I hope somebody can give me a hint how to handle such errors!

Thank you, best regards,

Flasher

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T14:24:54+00:00Added an answer on May 27, 2026 at 2:24 pm

    The only way a constructor can report failure is by throwing an exception.

    Destructors, to the contrary, must not throw exceptions (if a destructor throws during stack unwinding, std::terminate is called, which ends the program by default).

    If destruction fails, you can

    • Swallow errors silently
    • Abort the program
    • Log the error and do either of the above.

    If you use RAII correctly, exceptions can traverse your code without damage.

    Example here:

    #include <cerrno>
    #include <cstring>
    #include <sstream>
    
    file::file(const char* filename) 
    {
        file_ = fopen(filename, "w+");
    
        if (!file_)
        {
            std::ostringstream os;
            os << "Cannot open " << filename << ": "
               << std::strerror(errno);
    
            throw std::runtime_error(os.str());
        }
    }
    
    file::~file()
    {
        fclose(file_);
    }
    

    Note that this code has many bugs: the fclose function can fail, and the failure may or may not be related to the closing (eg. some write errors are only reported when flushing at the close system call on POSIX systems). Please use iostreams for file I/O in C++, since they provide convenient abstractions over those concerns.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'd like to implement a simple class (in Java) that would allow me to
I would like to pass values into the constructor on the class that implements
I would like to implement a drawing class with the help of Quartz .
I would like a class to implement an interface, I do not want to
I have a class that implements multiple interfaces. I would like to register these
I would like to implement a data access object pattern in C++, but preferably
I would like to implement a producer/consumer scenario that obeys interfaces that are roughly:
I would like some help with something I have to implement. Thank you very
New to java, but would love to implement my working jsp that generates xml
I have some code that moves files around and would like to implement a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.