-
20180724Advanced11Course35IOC
IOC这个文件是告诉你怎么使用IOC的视频,有问题联系我(IOC This file tells you how to use IOC video. Contact me if you have any)
- 2018-11-30 19:04:50下载
- 积分:1
-
C++Primer Plus第6版中文版源代码
应用背景C++PrimerPlus第六版课本源代码,和课本同步,嗯注释是英文的(肯定啊),代码和课本上的一样,官网的链接挂了发在这里供各位学习关键技术
示例:
// stack.h -- class definition for the stack ADT
#ifndef STACK_H_
#define STACK_H_
typedef unsigned long Item;
class Stack
{
private:
enum {MAX = 10}; // constant specific to class
Item items[MAX]; // holds stack items
int top; // index for top stack item
public:
Stack();
bool isempty() const;
bool isfull() const;
// push() returns false if stack already is full, true otherwise
bool push(const Item & item); // add item to stack
// pop() returns false if stack already is empty, true otherwise
bool pop(Item & item); // pop top into item
};
#endif
- 2022-03-16 20:51:53下载
- 积分:1
-
XK29085007芯片实现CAN功能
XK29085007内核是stm32f207,最大的特点是融合了强大的can总线能力,本例程给出了他的can总线的应用发放并通过串口输出。
- 2022-05-26 10:58:57下载
- 积分:1
-
Skin
33个C++皮肤源代码实例 含MFC界面美化 自定义控件(33 C++ skin source code examples MFC interface to beautify the custom control)
- 2016-03-29 11:23:27下载
- 积分:1
-
WIFI代码
基于WiFi的温湿度监测与显示,(1)主控芯片采用STM32系列单片机、数字温湿度度传感器DHT11、WiFi模块ATK-ESP8266;
(2)通过数字温湿度度传感器DHT11采集数据;
(3)将数据通过WiFi模块在电脑上进行显示。(Temperature and humidity acquisition)
- 2020-12-10 09:09:20下载
- 积分:1
-
C#从入门到实践
C#从入门到实践(全23章),适合初学者快速了解。(C# from entry to practice (all 23 chapters))
- 2018-08-07 15:30:13下载
- 积分:1
-
testdll
改程序主要用来测试VS2008下的dll文件使用(Reform program is mainly used to test the dll file under VS2008 the use of)
- 2010-03-01 10:30:53下载
- 积分:1
-
蓝牙cc2540
蓝牙4.0开发手册,详细介绍了蓝牙cc2540开发板的详细情况,学习低功耗蓝牙的可用看看
蓝牙4.0开发手册,详细介绍了蓝牙cc2540开发板的详细情况,学习低功耗蓝牙的可用看看
- 2022-06-28 09:13:17下载
- 积分:1
-
anfismex
用于模糊理论的核心函数,可以转成M文件来方正(fuzzy study)
- 2010-12-08 14:01:27下载
- 积分:1
-
VxWorks_bootrom_to_u-boot
VxWorks的bootrom到u-boot的移植心得(The VxWorks the bootrom to a u-boot transplant experience)
- 2012-11-05 11:37:01下载
- 积分:1