CTRL key
ctrl key其实是用于扩展键盘,单独一个ctrl键没有什么作用,也没有ascii码,当与其他键相结合时,相当于创造出一个新键。例如:用getchar()侦测输入的字符,当按下ctrl+a时,只输出了一个ascii码1。只按下ctrl键没有输出。因此ctrl+a其实只相当于一个键罢了。
下表为所有的ctrl组合键的ascii码及其名字。
| Control | Code | To Enter With | Echo | ||||||
| Abbreviation | Full Name | Dec | Hex | Alt-Key | Ctrl-Key | ||||
| NUL | Null | 0 | 00 | Ctrl-@ | ^@ | ||||
| SOH | Start of heading | 1 | 01 | Alt-1 | Ctrl-A | ^A | |||
| STX | Start of text | 2 | 02 | Alt-2 | Ctrl-B | ^B | |||
| ETX | End of text | 3 | 03 | Alt-3 | Ctrl-C | ^C | |||
| EOT | End of transmission | 4 | 04 | Alt-4 | Ctrl-D | ^D | |||
| ENQ | Enquiry | 5 | 05 | Alt-5 | Ctrl-E | ^E | |||
| ACK | Acknowledge | 6 | 06 | Alt-6 | Ctrl-F | ^F | |||
| BEL | Bell | 7 | 07 | Alt-7 | Ctrl-G | ^G | |||
| BS | Backspace | 8 | 08 | Alt-8 | Ctrl-H | ^H | |||
| HT | Horizontal tab | 9 | 09 | Alt-9 | Ctrl-I | ^I | |||
| LF | Line feed | 10 | 0A | Alt-10 | Ctrl-J | ^J | |||
| VT | Vertical tab | 11 | 0B | Alt-11 | Ctrl-K | ^K | |||
| FF | Form feed | 12 | 0C | Alt-12 | Ctrl-L | ^L | |||
| CR | Carriage return | 13 | 0D | Alt-13 | Ctrl-M | ^M | |||
| SO | Shift out | 14 | 0E | Alt-14 | Ctrl-N | ^N | |||
| SI | Shift in | 15 | 0F | Alt-15 | Ctrl-O | ^O | |||
| DLE | Data line escape | 16 | 10 | Alt-16 | Ctrl-P | ^P | |||
| DC1 | Device control 1 | 17 | 11 | Alt-17 | Ctrl-Q | ^Q | |||
| DC2 | Device control 2 | 18 | 12 | Alt-18 | Ctrl-R | ^R | |||
| DC3 | Device control 3 | 19 | 13 | Alt-19 | Ctrl-S | ^S | |||
| DC4 | Device control 4 | 20 | 14 | Alt-20 | Ctrl-T | ^T | |||
| NAK | Negative acknowledge | 21 | 15 | Alt-21 | Ctrl-U | ^U | |||
| SYN | Synchronous idle | 22 | 16 | Alt-22 | Ctrl-V | ^V | |||
| ETB | End transmission block | 23 | 17 | Alt-23 | Ctrl-W | ^W | |||
| CAN | Cancel | 24 | 18 | Alt-24 | Ctrl-X | ^X | |||
| EM | End of medium | 25 | 19 | Alt-25 | Ctrl-Y | ^Y | |||
| SUB | Substitute | 26 | 1A | Alt-26 | Ctrl-Z | ^Z | |||
| ESC | Escape | 27 | 1B | Alt-27 | Ctrl-[ | ^[ | |||
| FS | File separator | 28 | 1C | Alt-28 | Ctrl-\ | ^\ | |||
| GS | Group separator | 29 | 1D | Alt-29 | Ctrl-] | ^] | |||
| RS | Record separator | 30 | 1E | Alt-30 | Ctrl-^ | ^^ | |||
| US | Unit separator | 31 | 1F | Alt-31 | Ctrl-_ | ^_ | |||
CTRL key的更多相关文章
- [WPF][ListBox]鼠标拖拽多选,(Shift Key、Ctrl Key多选有效)(转)
<ListBox Name="listBox" SelectionMode="Extended"> <ListBox.Resources> ...
- ubuntu 交换ctrl与caps lock 键
The relevant option is no longer available in the settings menu in Ubuntu 13.10; this has been repor ...
- Ubuntu 16.04交换Ctrl和Caps
将Caps这个鸡肋的键位换成Ctrl的人不在少数,Ubuntu 12.04 中可以通过设置-键盘更改,新版去掉了这个功能,可以通过修改系统文件实现 方法1 在~/.xinputrc中加入:setxkb ...
- opengl键盘回调函数不能获取Ctrl+c的问题
我要令窗口在按下 Ctrl+c 之后关闭. 关键代码如下: /* 这段代码位于键盘回调函数中 */ if ((glutGetModifiers() == GLUT_ACTIVE_CTRL) & ...
- Thinkpad个性化设置:F1~F12恢复正常按键,Fn与Ctrl按键互换
一.F1~F12恢复正常按键 联想Thinkpad的F1~F12键功能与其他笔记本是相反的! 也就是说,如果不按着Fn,按那几个功能键,实现的是属性设置的功能,比如直接按下F1键是静音,F2键是音量降 ...
- QT 按键处理 快捷键处理 shift + ctrl
原味地址:http://www.cnblogs.com/codingmylife/archive/2010/08/30/1812739.html CTRL+Enter发送信息的实现 在现在的即时聊天程 ...
- C# monitor keyboard and print pressed key
using System; using System.Windows.Forms; using System.Runtime.InteropServices; using System.Diagnos ...
- [转载]-虚拟键值表-virtual key code
转载 虚拟键值表, virtual key code Virtual-Key Codes VK_LBUTTON (01)Left mouse button VK_RBUTTON (02)Right ...
- windows消息机制详解(转载)
消息,就是指Windows发出的一个通知,告诉应用程序某个事情发生了.例如,单击鼠标.改变窗口尺寸.按下键盘上的一个键都会使Windows发送一个消息给应用程序.消息本身是作为一个记录传递给应用程序的 ...
随机推荐
- python ast
import ast print ast.literal_eval('[1, 2, 3]')print eval("2 + 3 * len('hello')") == 17prin ...
- Linux常用操作
1. Latex参考文献格式 http://blog.163.com/sunkun_hust/blog/static/204454119201482524222283/
- ServiceContract,OperationContract
代码如下 [ServiceContract] //服务协定定义 using System.ServiceModel; public interface IInterface1 { [Operation ...
- .net webapi项目中支持session
webapi中默认是不支持session的开启的 需要在Global.asax文件中,添加如下代码 public override void Init() { this.PostAuthenticat ...
- Android 边框圆角
RelativeLayout 圆角实现: drawable目录下面定义shape的xml文件: mall_header_rel_bg.xml <?xml version="1.0&q ...
- ACdream 1015 Double Kings
假设第一个人选的点为P,并且当作根,那么第二个人选的最优情况必然是根p连着的那些点中的一个.然后枚举一下P即可. #pragma comment(linker, "/STACK:102400 ...
- log设置
1.log的设置方式 .在 runtime setting中可以设置log的生成方式:默认的log方式:Enable logging选中,log option是Send messages only w ...
- redis :初步使用
redis : 1.ubuntu安装 'pip install redis-server' 2.启动 'redis-cli' 3.使用 set: set a 1 get: get a fl ...
- 使用 Spark MLlib 做 K-means 聚类分析[转]
原文地址:https://www.ibm.com/developerworks/cn/opensource/os-cn-spark-practice4/ 引言 提起机器学习 (Machine Lear ...
- HDU 2514 Another Eight Puzzle(DFS)
题目链接 Problem Description Fill the following 8 circles with digits 1~8,with each number exactly once ...