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

  • Home
  • SEARCH
  • 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 7491111
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T15:52:36+00:00 2026-05-29T15:52:36+00:00

I want to write a file_handle class like this #include <stdio.h> #include <iostream> #include

  • 0

I want to write a file_handle class like this

#include <stdio.h>
#include <iostream>
#include <string>

//===========================================================================
class File_handle {
    FILE* p;
    public:
    File_handle(const char* pp, const char* r) {
    p = fopen(pp, r);
    }
    File_handle(const std::string& s, const char* r) {
    p = fopen(s.c_str(), r);
    }
    ~File_handle() {
    if (p) 
    fclose(p);
    }
    // what is this ?????    i found it in stroustrups c++ on page 389
    // ---> Mark A
    operator FILE*() { return p;} 


    // I have tried something like this, but without any success
    // ---> Mark B
    //friend std::ostream& operator<<(std::ostream&, const File_handle&); 
};

//===========================================================================
int main() {
    const std::string filename("test.txt");
    File_handle fh(filename, "w");
    // doesn't work
    // fh << "hello\n";
    // *fh << "hello\n";
    // this works now
    File_handle fA("A.txt", "w");
    fprintf(fA, "say hello to A.txt");
    File_handle fB("B.txt", "w");
    fputs("say hello to B.txt", fB);
    return 0;
}

I don’t know, how I can use the file stream outside the class.
I have tried it with overloading the operator<<, how you can see in the code example above. (Indicated as: mark B in the code above.)

And I found the line operator FILE*() { return p; } in the book of Bjarne Stroustrup.
But which operator is overloaded in this line? (Indicated as: mark A)

  • 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-29T15:52:37+00:00Added an answer on May 29, 2026 at 3:52 pm

    You should use std::fstream instead of your File_handle class.

    But if you need to specify some additional behaviour, you can derive your class from std::fstream. So this kind of solution could look like this:

    #include <iostream>
    #include <fstream>
    
    class File_handle : public std::fstream
    {
    public:
        File_handle(const char* filename, _Openmode o) { open(filename, o); }
        ~File_handle() { close(); }
    };
    
    int main()
    {
        File_handle fh("test.txt", std::ios::out);
        fh << "aa";
        return 0;
    }
    

    Hope this helps.

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

Sidebar

Related Questions

i have an char array b[20] which i want to write into a file
I want to write batch file for my own php framework. for example i
I want to write a file where an external application can read it, but
I want to write a JAR file that makes use of the javax servlet
I want to write to a file in the windows temp directory. I know
I want to write a XML file as below: <?xml version=1.0 encoding=UTF-8?> <books xmlns:xsd=http://www.w3.org/2001/XMLSchema
I want to write to a file without overwriting anything. It is a text
I want to write a .xml file using the following code into the App_Data/posts.
I want to write out a text file. Instead of the default UTF-8, I
I want to write to/delete a file but sometimes I get a crash if

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.