-
A simple example source pendants, pendants can be uploaded to the server (http:/...
一个简单的挂件实例源码,可以上传到挂件服务器(http://www.xiaobeiker.com)并发布。-A simple example source pendants, pendants can be uploaded to the server (http://www.xiaobeiker.com) and publish.
- 2023-02-25 16:30:04下载
- 积分:1
-
该代码介绍了grid_list控件的用法,在vc++6.0环境测试通过
该代码介绍了grid_list控件的用法,在vc++6.0环境测试通过-grid_list control of the usage, vc 6.0 in the test environment
- 2022-03-20 10:27:26下载
- 积分:1
-
Saved in a file directory contents, create a file or subdirectory can use comman...
在文件中保存目录内容,创建文件或子目录可以用命令行命令:MD、CD、RD、MK(创建文件)、DEL(删除文件)和DIR。目录项包括文件或目录名称、类型(文件、目录或空目录项)、创建日期以及下一个目录项指针、下一级目录项指针。-Saved in a file directory contents, create a file or subdirectory can use command-line commands: MD, CD, RD, MK (create file), DEL (delete files), and DIR. Directory entry includes the file or directory name, type (file, directory, or an empty directory entries), creation date and the next pointer to a directory entry, the next one directory entry pointer.
- 2023-07-14 02:55:02下载
- 积分:1
-
用MAXPLUS制作计算机组成原理实验I/O中断管理电路的模拟。
用MAXPLUS制作计算机组成原理实验I/O中断管理电路的模拟。-Segments produced using Computer Engineering Experiment I/O circuit interruption management simulation.
- 2022-02-03 11:55:29下载
- 积分:1
-
本程序是实现经典游戏贪吃蛇的源码,可以帮助读者了解游戏的制作原理。...
本程序是实现经典游戏贪吃蛇的源码,可以帮助读者了解游戏的制作原理。-This procedure is to achieve the classic Snake game source code, can help readers to understand the principles of game production.
- 2022-01-26 05:41:42下载
- 积分:1
-
CHANGEOWNER.zip
资源描述这个程序中的按钮可以重一个窗体移动到另一个窗体上,这就是变换可视组件所有者的方法。
- 2022-07-20 05:02:29下载
- 积分:1
-
基于opencv实现图像小波变换
本程序通过滤波器组实现图像的小波变换和逆小波变换,同时也将小波变换用于去噪的两种方法:硬阈值去噪法和软阈值去噪法都写了,在去除图像噪声后能够重建图像达到很好的效果。此外,本程序可以实现多层小波变换,通过参数的设置从而实现。
- 2022-02-11 10:57:59下载
- 积分:1
-
意在让你明白怎么把Flash界面嵌入到MFC程序里面去
意在让你明白怎么把Flash界面嵌入到MFC程序里面去-Intended to allow you to understand how the Flash interface embedded inside the MFC process go
- 2022-07-21 21:58:39下载
- 积分:1
-
本软件实现了示波器,信号发生器,频率计,万用表的功能,在音频范围内可完全替代上述仪器。这并不是仿真软件,而是实用的工具,这些虚拟仪器可以很好的工作。最简单的应用...
本软件实现了示波器,信号发生器,频率计,万用表的功能,在音频范围内可完全替代上述仪器。这并不是仿真软件,而是实用的工具,这些虚拟仪器可以很好的工作。最简单的应用只需要两根电缆,一根输入,一根输出。-this software realize the function of oscillograph and signal befallen and cymometer and multimeter. in frequency confine can substitute for instrument so you say,this software is not a emulational software but a applied tool.these dummy instrument can do well many job.the simple application mere need two cable ,one input,the other output.
- 2022-05-24 11:11:54下载
- 积分:1
-
java异常处理
3.8 异常处理
什么是异常
知道Java异常分类
处理异常的两种方式
throw和throws区别
如何创建自定义异常
概念:
在程序中,可能产生程序员没有预料到的各种错误情况,比如打开一个不存在的文件等,在Java中,这种在程序运行时可能出现的错误称为异常。
异常可以把“描述在正常执行过程中做什么事”的代码和“出了问题怎么办”的代码相分离
例子:demo05.ExceptionDemo.java
Java异常分类A:
java.lang.Error,java.lang.Exception
Error(错误):jvm系统内部错误、资源耗尽等严重问题,发生Error时,编程人员无能 为力,只能终止程序,例如内存溢出等。
Exception(异常):因编程错误或偶然的外在因素导致的一般性问题,例如:对负数 开平方根、空指针访问等,当发生Exception 时,编程人员可以做出处理,并做出人性 化响应,比如弹出窗口,显示“请不要输入负数!”。
异常分类B:
检查性异常:编译器必须处理的异常,该类异常通常是Exception类型或其子类(RuntimeException类除外)//运行时异常
SQLException、IOException、ClassNotFoundException
例子:/DemoProject/src/com/hyg/demo08/FileInputStreamDemo.java
非检查性异常:编译器不要求强制处理的异常,RuntimeException类及其所有子类都是非检查性异常。
NullPointerException、ClassCastException
例子:equa
- 2022-02-14 14:02:16下载
- 积分:1