-
JPEG(C)
jpeg源码,c语言版本,希望对大家有帮助(jpeg source, c language version, in the hope that we have to help)
- 2008-12-27 14:22:57下载
- 积分:1
-
定时器中断
说明: STM32F407定时器实验,使用定时器控制LED闪烁,并且与while循环的闪烁灯进行时间的对比。(STM32F407 timer experiment uses timer to control LED flicker, and compares the time with that of the while cycle flicker lamp.)
- 2020-06-21 14:40:01下载
- 积分:1
-
opencv相似变换代码
opencv的相似变换函数中有一个问题,使用随机抽样一致性来选取随机点做最小二乘,当满足要求的点个数不够的时候会生成空矩阵。上传的这段代码修复了这个问题。
- 2022-03-20 02:27:19下载
- 积分:1
-
C #多线程测试样品
multi thread sample test in c#-multi thread sample test in c#
- 2023-06-03 20:50:03下载
- 积分:1
-
SeePic
SeePIC 该程序可以查看BMP格式的图像文件,使用了Imageload.lib(Imageload.lib VC++ for bmp file view)
- 2012-03-01 11:23:42下载
- 积分:1
-
c#帮助类大全.zip
c#工具类
- 2020-11-05下载
- 积分:1
-
MyHotelManager
酒店管理系统(ExtJs),该系统采用VS2005+SQL2005开发,采用Extjs2.0技术实现UI展示.数据库脚本:App_Data文件夹下.数据库操作采用的是SqlHelper.DB_51aspx下为Sql数据库文件,附加即可.默认登陆页面为login.aspx,默认帐号/密码:admin/admin.注意:如果在IIS下配置,务必将HotelUI设置为虚拟目录 (Hotel Management System (ExtJs), the system developed using VS2005+ SQL2005, using Extjs2.0 technology for UI display. Database script: App_Data folder. SqlHelper.DB_51aspx database operations is used under the Sql database file can be attached. The default login page is login.aspx, default account/password: admin/admin. Note: If you configure IIS, be sure to set the virtual directory HotelUI)
- 2010-02-16 15:00:05下载
- 积分:1
-
array
用引用的方法求二维数组的最大值及其下标,谭浩强书上的(Use the methods to controls.)
- 2012-03-29 16:55:52下载
- 积分:1
-
LM35
Listing program for LM35 temperature
- 2013-11-17 15:01:12下载
- 积分:1
-
C# 创建一个泛型接口
C# 创建一个泛型接口的例子,创建一个泛型接口的代码和方法如下:
public interface IGenericInterface {
T CreateInstance(); //接口中调用CreateInstance方法
}
//实现上面泛型接口的泛型类
//派生约束where T : TI(T要继承自TI)
//构造函数约束where T : new()(T可以实例化)
public class Factory : IGenericInterface where T : TI, new()
{
public TI CreateInstance()//创建一个公共方法CreateInstance
{
return new T();
}
}
class Program
{
static void Main(string[] args)
{
//实例化接口
IGenericInterface factory =
Factory();
//输出指定泛型的类型
Console.WriteLine(factory.CreateInstance().GetType().ToString());
Console.ReadLine();
}
}
- 2022-03-11 00:59:39下载
- 积分:1