搜索结果
找到约 275 项符合
Void 的查询结果
按分类筛选
- 全部分类
- 技术资料 (54)
- 单片机开发 (32)
- 单片机编程 (27)
- 源码 (18)
- 其他 (14)
- 数据结构 (12)
- 数学计算 (10)
- C/C++语言编程 (8)
- Java编程 (8)
- 汇编语言 (6)
- 其他嵌入式/单片机内容 (6)
- 书籍源码 (5)
- 编译器/解释器 (5)
- VC书籍 (5)
- Linux/Unix编程 (4)
- 嵌入式Linux (4)
- 书籍 (3)
- 习题答案 (3)
- Internet/网络编程 (3)
- 文章/文档 (3)
- 软件设计/软件工程 (3)
- 笔记 (2)
- 技术书籍 (2)
- 开发工具 (2)
- 嵌入式综合 (2)
- 游戏 (2)
- Applet (2)
- 技术管理 (2)
- Java书籍 (2)
- 其他行业 (2)
- JavaScript (2)
- 软件 (1)
- Linux/uClinux/Unix编程 (1)
- 设计相关 (1)
- DSP编程 (1)
- 仿真技术 (1)
- 操作系统开发 (1)
- PCB图/BOM单/原理图 (1)
- 其他文档 (1)
- 教材/考试/认证 (1)
- 软件工程 (1)
- 模拟电子 (1)
- 压缩解压 (1)
- 驱动编程 (1)
- 编辑器/阅读器 (1)
- 通讯编程文档 (1)
- 嵌入式/单片机编程 (1)
- uCOS (1)
- 人工智能/神经网络 (1)
- 家庭/个人应用 (1)
- GPS编程 (1)
- Jsp/Servlet (1)
- VIP专区 (1)
书籍 Microwave+Radiometer+Systems
Two important microwave remote sensors are the radar and the radiometer.
There have been a number of books written on various aspects of radar, but
there have been only a few written on microwave radiometers, especially on sub-
jects of how to design and build radiometer systems. This book, which is ...
书籍 Microwave+Radiometer+Systems Design and Analysis
Two important microwave remote sensors are the radar and the radiometer.
There have been a number of books written on various aspects of radar, but
there have been only a few written on microwave radiometers, especially on sub-
jects of how to design and build radiometer systems. This book, which is ...
技术资料 C51_点亮第一个LED
#include "reg52.h" sbit led=P0^0; void main(){ while(1) { led=1; } }
单片机编程 100个单片机实例
#include<reg51.h> //包含单片机寄存器的头文件
/*******************************************************
函数功能:主函数 (C 语言规定必须有也只能有1 个主函数)
********************************************************/
void main(void)
{
while(1) //无限循环
{
P1=0xff; // P1=1111 1111B,熄灭LED
...
编译器/解释器 简单C编译器生成的目标代码是8086的汇编代码(16位)
简单C编译器生成的目标代码是8086的汇编代码(16位),可以在一般的PC上被像MASM之类的汇编编译程序编译,生成可执行文件后,在DOS或Windows控制台下运行。
实现的语言定义如下:
语言类似于tiny语言,不支持过程调用,也就是只有一个main函数,无其他函数和全局变量
基本语句:注释语句(/*…*/),输入语句(int input(void ...
数据结构 数据抽象(使用类和对象设计回应程序) 实验内容描述: 1. 测试程序 假设类名为Welcome
数据抽象(使用类和对象设计回应程序)
实验内容描述:
1. 测试程序
假设类名为Welcome,测试程序如下:
void main()
{
Welcome we
Welcome you(we)
you.Display()
you.Set(“Thank you.”)
cout<<you.Get()<<endl
you.talk()
you.Display()
} ...
技术资料 1N5399
FEATURES
♦ Plastic package has Underwriters Laboratory
Flammability Classification 94V-0
♦ High surge current capability
♦ 1.5 Ampere operation at TL=70°C
with no thermal runaway
♦ Low reverse leakage
♦ Construction utilizes
void-free molded plastic technique
♦ High temperature soldering gu ...
软件工程 编程精粹 ─── Microsoft 编写优质无错C 程序秘诀 Writing Clean Code ─── Microsoft Techniques for Developing Bug-fr
编程精粹
─── Microsoft 编写优质无错C 程序秘诀
Writing Clean Code
─── Microsoft Techniques for Developing Bug-free C
Programs
Steve Maguire 著
姜静波 佟金荣 译
麦中凡 校
电子工业出版社
编写优化、高效、无错地代码 2
这份电子书籍由PC Home 俱乐部、C++ Bulider 讨论区数位网友分别整理完成,基本
上完全 ...
编译器/解释器 UC Library Extensions UnderC comes with a pocket implementation of the standard C++ libraries, wh
UC Library Extensions
UnderC comes with a pocket implementation of the standard C++ libraries, which is a reasonably faithful subset. This documentation describes those UnderC functions and classes which are not part of the C++ standard.
UC Library
Builtin functions:
Most of these are standard C ...
其他文档 多线程游戏
/**
&nbsp;* 用于在逻辑和界面间传输数据的bean
&nbsp;* @version 1.0
&nbsp;*/
public class DataBean {
&nbsp; &nbsp; private int first = -1;
&nbsp; &nbsp; private int second = -1;
&nbsp; &nbsp; public int getFirst() {
&nbsp; &nbsp; &nbsp; &nbsp; return first;
&nbsp; &nbsp; }
&nbsp; &nbsp; public int ...