《C C++程序员实用大全》配套光盘源代码 欢迎下载

源代码在线查看: fun_nthr.cpp

软件大小: 631 K
上传用户: RR15133422795
关键词: 程序员 光盘 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 
				
				void XHandler(int test) throw()
				 {
				   if(test==0)
				     throw test;
				   if(test==1)
				     throw 'a';
				   if(test==2)
				     throw 123.23;
				 }
				
				void main(void)
				 {
				   cout 				   try
				    {
				      XHandler(0);                  // try passing 1 and 2 for different responses
				    }
				   catch(int i)
				    {
				      cout 				    }
				   catch(char c)
				    {
				      cout 				    }
				   catch(double d)
				    {
				      cout 				    }
				   cout 				 }
				 
							

相关资源