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 6636115
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T23:08:40+00:00 2026-05-25T23:08:40+00:00

Lately I’ve been doing a lot of exercises with file streams. When I use

  • 0

Lately I’ve been doing a lot of exercises with file streams. When I use fstream.write(...)
to e.g. write an array of 10 integers (intArr[10]) I write:

fstream.write((char*)intArr,sizeof(int)*10);

Is the (char*)intArr-cast safe? I didn’t have any problems with it until now but I learned about static_cast (the c++ way right?) and used static_cast<char*>(intArr) and it failed! Which I cannot understand … Should I change my methodology?

  • 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-25T23:08:41+00:00Added an answer on May 25, 2026 at 11:08 pm

    A static cast simply isn’t the right thing. You can only perform a static cast when the types in question are naturally convertible. However, unrelated pointer types are not implicitly convertible; i.e. T* is not convertible to or from U* in general. What you are really doing is a reinterpreting cast:

    int intArr[10];
    
    myfile.write(reinterpret_cast<const char *>(intArr), sizeof(int) * 10);
    

    In C++, the C-style cast (char *) becomes the most appropriate sort of conversion available, the weakest of which is the reinterpreting cast. The benefit of using the explicit C++-style casts is that you demonstrate that you understand the sort of conversion that you want. (Also, there’s no C-equivalent to a const_cast.)

    Maybe it’s instructive to note the differences:

    float    q  = 1.5;
    uint32_t n  = static_cast<uint32_t>(q);      // == 1, type conversion
    uint32_t m1 = reinterpret_cast<uint32_t>(q); // undefined behaviour, but check it out
    uint32_t m2 = *reinterpret_cast<const uint32_t *>(&q); // equally bad
    

    Off-topic: The correct way of writing the last line is a bit more involved, but uses copious amounts of casting:

    uint32_t m;
    char * const pm = reinterpret_cast<char *>(&m);
    const char * const pq = reinterpret_cast<const char *>(&q);
    std::copy(pq, pq + sizeof(float), pm);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Lately I've been thinking a lot about building a website/blog/community oriented site. However I
lately I have been writing a lot of tiny plugins for my web projects
Lately I have been doing some numerical method programming in C. For the bug
Lately i've been through a lot of times on a single situation problem: I
Lately I have been doing a security pass on a PHP application and I've
Lately I've been using XPathDocument and XNavigator to parse an XML file for a
Lately I have been seeing an increasing number of design articles encouraging the use
Lately I have been trying my hands on Eclipse IDE for java development. I
Lately I've been favoring using named pipes (option --enable-named-pipes) in MySQL running on windows,
Lately, I have taken to the pattern of having a lot of diagnostic logging

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.