⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fig13_01.cpp

📁 经典vc教程的例子程序
💻 CPP
字号:
// Fig. 13.1: fig13_01.cpp
// A simple exception handling example.// Checking for a divide-by-zero exception.#include <iostream.h>// Class DivideByZeroException to be used in exception // handling for throwing an exception on a division by zero.class DivideByZeroException {public:   DivideByZeroException() 
      : message( "attempted to divide by zero" ) { }
   const char *what() const { return message; }private:   const char *message;};// Definition of function quotient. Demonstrates throwing // an exception when a divide-by-zero exception is encountered.double quotient( int numerator, int denominator ){   if ( denominator == 0 )      throw DivideByZeroException();   return static_cast< double > ( numerator ) / denominator;}// Driver programint main(){   int number1, number2;
   double result;

   cout << "Enter two integers (end-of-file to end): ";   while ( cin >> number1 >> number2 ) {   
      // the try block wraps the code that may throw an 
      // exception and the code that should not execute
      // if an exception occurs      try {            result = quotient( number1, number2 );         cout << "The quotient is: " << result << endl;      }      catch ( DivideByZeroException ex ) { // exception handler         cout << "Exception occurred: " << ex.what() << '\n';      }
      cout << "\nEnter two integers (end-of-file to end): ";
   }
   cout << endl;
   return 0;      // terminate normally}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -