-
清华大学原版C#学习资料,适合初学者使用!
清华大学原版C#学习资料,适合初学者使用!-Tsinghua University, the original C# Study information, suitable for beginners to use!
- 2023-07-26 10:20:04下载
- 积分:1
-
C++ primer 5 练习题
第一章习题代码
C++实现
有什么错误还请大家指正
ex1_09.cpp
- 2023-02-25 09:40:03下载
- 积分:1
-
Shinling&Minhash算法
Shinling&Minhash算法,适用于大数据技术。广工的课程设计,实验报告源文件可参考,原创,感谢分享
- 2023-01-03 22:20:03下载
- 积分:1
-
基于ESP32的图形界面设计
【实例简介】
- 2021-07-12 00:31:50下载
- 积分:1
-
LED显示屏控制卡源码
T45DB041B的模拟SPI程序,验证过无问题! /********************************************************************************* * 函数原型:unsigned char SPI_ReadByte(void); * 名 称:SPI_ReadByte * 功 能:从AT45DB041B通过SPI_SO口读入1BYTE数据 * 入口参数:无 * 出口参数:返回读入的1BYTE数据 **********************************************************************************/ unsigned char SPI_ReadByte(void) { unsigned char i,rByte=0; for(i=0;i
- 2022-03-25 18:35:36下载
- 积分:1
-
ScoreManageSystem
这是学习C++的过程中,练习面向对象思想的最好的例子,就是学生成绩国力系统
(This is a learning process C++ practice of object-oriented thinking the best example is the national system of student achievement Floyd algorithm- the shortest path directed graph)
- 2014-05-11 22:46:37下载
- 积分:1
-
C# 进度条、状态栏和计时器的实例
C# 进度条、状态栏和计时器的实例,这个例子的部分功能需要连接数据库才可看到,窗体上可看到进度条、时间等控件的效果,相关代码可看下边的代码,可起一定参考:
myAdapter.Fill(myDs, "dtMyProd");
myConn.Close();
//为数据表生成主键
DataColumn[] myPK = new DataColumn[1];
myPK[0] = myDs.Tables["dtMyProd"].Columns["ProductId"];
myDs.Tables["dtMyProd"].PrimaryKey = myPK;
DataRow thisRow = myDs.Tables["dtMyProd"].Rows[1];
txtPId.Text = "" + thisRow["ProductId"];
txtPName.Text = (String)thisRow["ProductName"];
txtUnitPrice.Text = "$" + thisRow["UnitPrice"];
statusBar1.Text ="数据库加载完毕";
时间处理方面,请参见以下代码:
string TimeInString="";
int hour=DateTime.Now.Hour;
int min=DateTime.Now.Minute;
int sec=DateTime.Now.Second;
TimeInString=(hour < 10)?"0" + hour.ToString() :hour.ToString();
TimeInString+=":" + ((min
- 2022-04-17 01:40:32下载
- 积分:1
-
PIC的学习文件,可以供初学者学习,使用的是C语言编程,还比较实用...
PIC的学习文件,可以供初学者学习,使用的是C语言编程,还比较实用-PIC study documents, for beginners learning, using the C programming language, but also more practical
- 2022-05-25 07:00:47下载
- 积分:1
-
GDAL C# interface with the build SharpMap (21,021 Change Set ) on the image to s...
GDAL C#接口库的编译与SharpMap(Change Set 21021)对影像的支持研究-GDAL C# interface with the build SharpMap (21,021 Change Set ) on the image to support research
- 2022-07-23 16:49:54下载
- 积分:1
-
ControlSystemsSimulationusingMatlabandSimulink
Addison Wesley出版的一本深入讲解c++面向对象编程机理的书,对于c++程序员进一步全面了解面向对象机制的好书。书中有丰富的程序实例和解读。英文版(Inside the C++ Object Model focuses on the underlying mechanisms that support object-oriented programming within C++: constructor semantics, temporary generation, support for encapsulation,
inheritance, and "the virtuals"-virtual functions and virtual inheritance. This book shows how your understanding the underlying implementation models can help you code more efficiently and with greater confidence. Lippman dispells the misinformation and myths about the overhead and complexity associated
with C++, while pointing out areas in which costs and trade offs, sometimes hidden, do exist. He then explains how the various implementation models arose, points out areas in which they are likely to evolve, and why they are what they are. He covers the semantic implications of the C++ object model and how that model affects your programs..)
- 2009-09-06 15:19:01下载
- 积分:1