-
dog
继承,用一种父类继承子类。简单示例。继承,用一种父类继承子类。简单示例。(Inheritance, with a parent class to inherit the subclass simple example inheritance, with a parent class to inherit the subclass simple example)
- 2020-06-22 13:00:02下载
- 积分:1
-
BP1
基于BP神经网络的电力系统短期负荷预测,简单实用(Short-term load forecasting of power system based on BP neural network is simple and practical)
- 2020-06-22 19:00:02下载
- 积分:1
-
Confusion Matrix
说明: 用Python计算图像对不同地物分类精确度, 计算分类结果图与标准参考图的混淆矩阵, 对分类结果进行评价(Python was used to calculate the classification accuracy of images for different ground objects, calculate the confusion matrix between the classification result map and the standard reference map, and evaluate the classification results)
- 2019-04-04 09:25:30下载
- 积分:1
-
用VC实现的俄罗斯方块程序,对学习VC有相当好的参考价值。
用VC实现的俄罗斯方块程序,对学习VC有相当好的参考价值。-VC realize with the Russian box procedures, learning VC has very good reference value.
- 2022-03-03 15:45:16下载
- 积分:1
-
CORTEZCONTABILIDAD
mini cortez mybusiness pos v11
- 2020-06-16 03:20:02下载
- 积分:1
-
这是用SQL2000开发的一个宾馆管理系统
这是用SQL2000开发的一个宾馆管理系统-This is a development of the SQL2000 Hotels Management System
- 2022-02-03 11:22:18下载
- 积分:1
-
俄罗斯方块小游戏 可以很好的运行并带有简单的音乐
俄罗斯方块小游戏 可以很好的运行并带有简单的音乐-Tetris game is well run and with a simple music
- 2022-03-07 00:08:52下载
- 积分:1
-
AnalogClock
qt jambi的模拟时钟的例子。展示了qt在java富客户端领域的强大功能,可以和swing兼容或者替代swing。继承了qt c++的良好品质。(qt jambi example analog clock. Qt display java rich client in the field of power swing can be compatible or alternative swing. Inherited qt c++ good quality.)
- 2009-07-10 13:16:16下载
- 积分:1
-
3信号归一化频率实验
说明: 基于Labview关于信号与系统的实验,主要是信号归一化频率实验(The experiment of correlation signal and system based on LabVIEW, mainly signal normalization frequency experiment)
- 2020-02-14 17:39:44下载
- 积分:1
-
C#启动Windows IIS服务的实例
C#启动指定的Windows信使服务,本例中是启动IIS服务,在Windows XP下可完美运行,在Windows7下不行好像,本程序演示如何在C#的程序中启动一个指定的Windows内置服务的方法。具体的实现代码:
ServiceController service = new ServiceController();//创建服务控制对象
service.ServiceName = "Messenger";//启动Windows信史服务
//判断当前服务状态
if (service.Status == ServiceControllerStatus.Stopped)
{
try
{
service.Start();// 启动服务
service.WaitForStatus(ServiceControllerStatus.Running);
}
catch (InvalidOperationException)
{
MessageBox.Show("不能启动该服务!");
}
}
- 2022-02-13 12:56:43下载
- 积分:1