搜索结果
找到约 56 项符合
Pop 的查询结果
按分类筛选
- 全部分类
- 单片机编程 (4)
- Internet/网络编程 (4)
- 数据结构 (3)
- 单片机开发 (3)
- 软件设计/软件工程 (3)
- 技术资料 (3)
- 网络 (2)
- 书籍源码 (2)
- 数值算法/人工智能 (2)
- Java编程 (2)
- 其他 (2)
- 通讯/手机编程 (2)
- 源码 (2)
- 电源技术 (1)
- 通信网络 (1)
- 语音压缩 (1)
- 人工智能/神经网络 (1)
- Delphi/CppBuilder (1)
- 电子书籍 (1)
- J2ME (1)
- JavaScript (1)
- 汇编语言 (1)
- 其他书籍 (1)
- VC书籍 (1)
- 嵌入式/单片机编程 (1)
- Linux/Unix编程 (1)
- 数学计算 (1)
- STL (1)
- 操作系统开发 (1)
- 编辑器/阅读器 (1)
- 汇编编程 (1)
- iPhone (1)
- 实用工具 (1)
- VIP专区 (1)
- 精品软件 (1)
STL SMC takes a state machine stored in a .sm file and generates a State pattern in twelve programming l
SMC takes a state machine stored in a .sm file and generates a State pattern in twelve programming languages. Includes: default transitions, transition args, transition guards, push/pop transitions and Entry/Exit actions. See User Manual for more info.
Java编程 一个用Java开发的Web邮局
一个用Java开发的Web邮局,可以使用户通过浏览器访问他们的POP/SMTP服务器,支持多种语言,MIME和虚拟域名!
操作系统开发 A user-space device driver can do many of the things that kernel drivers can t, such as perform a lo
A user-space device driver can do many of the things that kernel drivers can t, such as perform a long-running computation, block while waiting for an event, or read files from the file system. Unlike kernel drivers, a user-space device driver can use other device drivers--that is, access the networ ...
其他 用C实现栈的InitStack
用C实现栈的InitStack, empty, full, push, pop, clear, getpop。的功能。
编辑器/阅读器 Normally a list view is updated by a user directly by selecting a list view item and then editing or
Normally a list view is updated by a user directly by selecting a list view item and then editing or deleting it. New items are usually added at the bottom of the list. This works fine since the user knows which items have been changed or deleted and where the new items will pop up. A drawback of it ...
通讯/手机编程 GSM (Global System for Mobile communications: originally from Groupe Spécial Mobile) is the most pop
GSM (Global System for Mobile communications: originally from Groupe Spécial Mobile) is the most popular standard for mobile phones in the world. Its promoter, the GSM Association, estimates that 80 of the global mobile market uses the standard.[1] GSM is used by over 3 billion people across more ...
单片机开发 按return键到后台
按return键到后台,调用popallform的时候,首先执行deactive form,这样在pop栈顶form的时候,下一个form将不会收到active事件,缩短响应return key事件的时间
汇编编程 16进制转十进制
DATAS SEGMENT
w dw 0
keybuf db 255
     db 0
     db 255 dup(0)      ;定义键盘输入需要的缓冲区
DATAS ENDS
STACKS SEGMENT
db 200 dup(?)
STACKS ENDS
CODES SEGMENT
ASSUME CS:CODES,DS:DATAS,SS:STACKS
START:
MOV AX,DATAS
MOV DS,AX
mov dx,offset keybuf   ...