搜索资源列表
exceptionsincom
- .Net中的异常处理语义是基于类型的,所以你可以创建具有其自己的属性和方法的自定义异常。异常是 .Net 中头等重要的一个元素,因为它是内建的错误处理机制,因此所有 .NET 兼容的语言都必须支持异常。另外, .Net 代码可以将 COM+ 服务作为 Enterprise Services(企业服务)来获得,所以你可以在 Enterprise Services 设计中定制异常。本程序的功能是从服务性组件产生定制异常,该组件被配置在一个 COM+ 服务器应用环境中执行(相对于库应用环境)。
Java_Try
- 此程序写的是java中进行异常处理的例子,引用系统异常类,或自定义异常,便于初学者参考-this program is written in java Exception Handling for example, under the category of system abnormalities, or defined exception to facilitate reference beginners
StudentInformation11
- 此为学生信息管理小控制台程序 该程序除输入人名,性别,父母姓名,血性外,还可对身份证的合法性进行判断功能,有异常处理-this as a small student information management console procedures in addition to the importation of the procedure names, gender, names of parents, gutsy, ID cards may also be right to judge
HttpServerusingWinSocket
- 用VC编写的一个基于WinSocket的http服务器,该程序中完成了自己的异常处理和多线程的处理。-VC prepared a WinSocket on the http server, The procedures completed his abnormal processing and multi-threaded processing.
java
- (1) 设计一个程序,用于根据用户输入的命令行参数数量来计算长方形、正方形、三角形的面积。如果输入的参数为一个、二个、三个则它们应分别对应正方形、长方形、三角形,如果没有参数,则通过异常处理方法现实错误消息。(用于计算面积的方法是一个重载的方法。提示:定义一个抽象的父类,并提供一个抽象的方法area(). 再派生出三个子类,重写area()方法,然后在main方法中用多态来实现具体的面积函数的调用)。
array
- 使用c++实现对程序的报错功能,使得在编程更加有效率,实现异常处理
ARM_Abormal_Process_Mechanism
- 分析ARM的异常处理机制,并以LPC2200为例介绍了具体程序的编写。
gjyy
- <<高级语言程序设计>> 实验指导 实验五 异常处理与I/O操作(对象的串行化) 实验六 图形用户界面(运算器)
c++3
- 本程序是关于异常处理的相关程序以及如何处理的事例
异常程序
- 有关异常程序的应用和实现,如何抛出异常,继续处理程序。-The application and achievement about exception programme,how to throw out exception,and continue to handle programme.
程序控制光驱源码
- 程序说明: 本例使用API函数 CDdoor 来控制光驱门的开和关 程序十分简单,由于 CDdoor 函数自身包含了对异常 错误的处理机制,因此这个程序的通用性很高,你可 以把这段代码移植到你的程序中,实现某些多媒体播 放器所常用的开关光驱的功能-procedures Note : In this example, using the API function CDdoor drive to control the doors opened and the clearance process i
C++程序设计语言实验四
- 实验七:C++编程入门 一、实验内容 1. 理解继承与组合。 2. 学会使用多态特性。 3. 使用文件。 4. 异常处理。 二、实验题目 1. 创建一个class Counted,包含一个int类型的成员变量id和一个static int类型的成员变量count。默认构造函数的开头为“Counted() : id(count ++) {”。要求: a) 构造函数输出id值并且输出“it’s being created”; b) 析构函数也输出id值并且输出“it is bein
train.火车进站排列
- 这个程序主要用是队列来实现利用队列结构实现车厢重排问题,同时还结合 了异常处理 ,Train stop with this procedure are mainly used to achieve the use of queue queue rearrangement inside the structure of implementation questions, but also a combination of exception handling
calendar日历软件
- 本程序基于命令行设计,需要完成日历表相关的以下五个基本功能: 1) 打印日历:当输入年份,输出所输入年份的每月的日历 a) 输入形式:print XXXX(一个正整数,年份) 输入值的范围:年份为正整数,命令为大小写不敏感 b) 输出形式 例:Jan. 1992 Mon. Tue. Wed. Thu. Fri. Sat. Sun. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
SEH
- SEH,结构化异常处理,是作为一种系统机制引入到操作系统中的,本身与语言无关。在我们自己的程序中使用SEH可以让我们集中精力开发关键功能,而把程序中所可能出现的异常进行统一的处理,使程序显得更加简洁且增加可读性。 -SEH, structured exception handling, as a system mechanism into the operating system itself has nothing to do with the language. In our own p
students
- 学生成绩信息采集程序,利用异常处理,对输入信息进行检查-Student performance information collection procedures, the use of exception handling, input information on the inspection
Exam96
- 该源码主要是通过为ApplicationEvents的OnException事件安装了一个处理程序,实现了数据库各种异常错误的处理。-The source is mainly through the OnException events ApplicationEvents install a handler to achieve a variety of database exception error handling.
yichangchuli
- MFC中异常处理程序,通过小例子,生动的体现,MFC程序设计书中的例子应用-MFC exception handling procedures, through small examples, vivid manifestation, MFC programming examples in the book Application
异常处理
- 通过异常处理,我们可以对用户在程序中的非法输入进行控制和提示,以防程序崩溃。(By exception handling, we can control and prompt the user's illegal input in the program to prevent the program from crashing.)
sy4
- (1) 实验前根据实验内容进行预习,掌握实验原理,写出实验预习报告 (2) 编写相应的程序,写出完整的程序代码,包括注释,注意书写的层次结构。 (3) 调试程序,写出调试过程和实验结果。 (4) 整理实验步骤,总结经验和体会,写出实验报告 (5) 上交实验预习报告、实验报告、源代码电子版和程序运行结果截图。((1) preview the experiment according to the experimental content, grasp the experimental pr