Class 10 Exam  >  Class 10 Notes  >  C++ Programming for Beginners  >  C++ Files & C++ Exceptions

C++ Files & C++ Exceptions | C++ Programming for Beginners - Class 10 PDF Download

The fstream library allows us to work with files.
To use the fstream library, include both the standard <iostream> AND the <fstream> header file:
Example

#include <iostream>

#include <fstream>

There are three classes included in the fstream library, which are used to create, write or read files:
C++ Files & C++ Exceptions | C++ Programming for Beginners - Class 10

Create and Write To a File

To create a file, use either the ofstream or fstream class, and specify the name of the file.
To write to the file, use the insertion operator (<<).
Example

#include <iostream>

#include <fstream>

using namespace std;


int main() {

  // Create and open a text file

  ofstream MyFile("filename.txt");


  // Write to the file

  MyFile << "Files can be tricky, but it is fun enough!";


  // Close the file

  MyFile.close();

}

Why do we close the file?
It is considered good practice, and it can clean up unnecessary memory space.

Read a File

To read from a file, use either the ifstream or fstream class, and the name of the file.
Note that we also use a while loop together with the getline() function (which belongs to the ifstream class) to read the file line by line, and to print the content of the file:
Example

// Create a text string, which is used to output the text file

string myText;


// Read from the text file

ifstream MyReadFile("filename.txt");


// Use a while loop together with the getline() function to read the file line by line

while (getline (MyReadFile, myText)) {

  // Output the text from the file

  cout << myText;

}


// Close the file

MyReadFile.close();

C++ Exceptions

When executing C++ code, different errors can occur: coding errors made by the programmer, errors due to wrong input, or other unforeseeable things.
When an error occurs, C++ will normally stop and generate an error message. The technical term for this is: C++ will throw an exception (throw an error).

C++ try and catch

Exception handling in C++ consist of three keywords: try, throw and catch:
The try statement allows you to define a block of code to be tested for errors while it is being executed.
The throw keyword throws an exception when a problem is detected, which lets us create a custom error.
The catch statement allows you to define a block of code to be executed, if an error occurs in the try block.
The try and catch keywords come in pairs:
Example

try {

  // Block of code to try

  throw exception; // Throw an exception when a problem arise

}

catch () {

  // Block of code to handle errors

}

Consider the following example:
Example

try {

  int age = 15;

  if (age >= 18) {

    cout << "Access granted - you are old enough.";

  } else {

    throw (age);

  }

}

catch (int myNum) {

  cout << "Access denied - You must be at least 18 years old.\n";

  cout << "Age is: " << myNum;

}

Example Explained
We use the try block to test some code: If the age variable is less than 18, we will throw an exception, and handle it in our catch block.
In the catch block, we catch the error and do something about it. The catch statement takes a parameter: in our example we use an int variable (myNum) (because we are throwing an exception of int type in the try block (age)), to output the value of age.
If no error occurs (e.g. if age is 20 instead of 15, meaning it will be be greater than 18), the catch block is skipped:
Example

int age = 20;

You can also use the throw keyword to output a reference number, like a custom error number/code for organizing purposes:
Example

try {

  int age = 15;

  if (age >= 18) {

    cout << "Access granted - you are old enough.";

  } else {

    throw 505;

  }

}

catch (int myNum) {

  cout << "Access denied - You must be at least 18 years old.\n";

  cout << "Error number: " << myNum;

}

Handle Any Type of Exceptions (...)

If you do not know the throw type used in the try block, you can use the "three dots" syntax (...) inside the catch block, which will handle any type of exception:
Example

try {

  int age = 15;

  if (age >= 18) {

    cout << "Access granted - you are old enough.";

  } else {

    throw 505;

  }

}

catch (...) {

  cout << "Access denied - You must be at least 18 years old.\n";

}

The document C++ Files & C++ Exceptions | C++ Programming for Beginners - Class 10 is a part of the Class 10 Course C++ Programming for Beginners.
All you need of Class 10 at this link: Class 10
15 videos|20 docs|13 tests

Top Courses for Class 10

15 videos|20 docs|13 tests
Download as PDF
Explore Courses for Class 10 exam

Top Courses for Class 10

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

Sample Paper

,

Free

,

Objective type Questions

,

Important questions

,

Extra Questions

,

C++ Files & C++ Exceptions | C++ Programming for Beginners - Class 10

,

C++ Files & C++ Exceptions | C++ Programming for Beginners - Class 10

,

Exam

,

pdf

,

Viva Questions

,

C++ Files & C++ Exceptions | C++ Programming for Beginners - Class 10

,

video lectures

,

past year papers

,

ppt

,

Summary

,

practice quizzes

,

Previous Year Questions with Solutions

,

mock tests for examination

,

MCQs

,

study material

,

Semester Notes

,

shortcuts and tricks

;