- 博客(16)
- 收藏
- 关注
转载 Multiple Appearance Directory Numbers (MADN)
Multiple Appearance Directory Numbers (MADN)A Multiple Appearance Directory Number (MADN) provides you with one telephone number which, when called, is directed to multiple lines.You can use a MAD
2014-03-12 10:01:35
5885
转载 When to Say "a" or "an"
When to Say "a" or "an"The indefinite article is a or an. But how do we know when to say a and when to say an?The rule is really very simple. It depends on the sound at the start of the followin
2013-04-03 13:25:28
625
转载 什么是极性反转 polarity reversal
反极信号:局端交换机提供48V直流电,所以电话线是有正负极的。反极就是把电话线的极性在极短的时间反转,反极信号是用来识别计费时间的。宾馆饭店和公用电话有反极信号,普通电话线不提供反极信号。工作过程是这样的:当用户拨打电话时,对方的电话一摘机,本地电话局在瞬间将用户的电话线极性反转,计费器识别到极性反转后开始计费。如果对方无人接听或错误提示,本地电话局不会反转极性,计费器不计费。
2013-03-28 17:13:07
8218
转载 雅思作文实用技巧之连接词
雅思作文实用技巧之连接词 在雅思作文技巧中,使用连接词是非常重要的一个,恰当的应用连接词可以让考生的雅思作文更加的完整,联系的更加的紧密。下面为大家搜集整理了最常见的雅思作文连接词,供大家在写作备考的时候进行参考。 使用连接词可以说是实现段落内部表达连贯的最主要的手段。这是因为过渡词可以表示句与句之间的逻辑关系。 表示并列的雅思作文连接词:First / second / las
2013-03-18 11:02:02
923
转载 Blue in the face
If you do something 'until you are blue in the face', it means you work very hard on it or do it for a long time, but in the end waste your efforts because you are not successful.Examples:Martin a
2013-02-20 13:35:49
401
转载 Odd man out
If someone or something is an 'odd man out' or an 'odd one out', it is unlike the others in a group.ExamplesWhen I got to the party everyone was wearing beautifully tailored suits and I was in r
2013-02-19 14:47:48
416
转载 复数S的发音规则
1 发音以清辅音结尾的单词变复数后发|S|音。但|∫|,|S|,|t∫|结尾的音除外。 如books,grapes。2 发音以浊辅音和元音结尾的单词变复数后发|Z|的音。但|Z|,|d3|,|3|结尾的音除外。 如potatoes,bags,ties3 发音以|∫|,|S|,|t∫|,|Z|,|d3|,|3|结尾的单词变复数后发|iz|的音。如dresses,dishes,bridges
2013-02-19 14:45:48
6330
转载 Unix/Linux环境段错误调试总结
http://www.cnblogs.com/panfeng412/archive/2011/11/06/2237857.html
2011-12-19 16:49:59
347
转载 View and search Unix/Linux man pages
这篇文章转载自:http://www.tuxfiles.org/linuxhelp/manpages.htmlHow to use man pages >If you're wondering how some command is used, or if you want more info about a particular command, you don't usually
2011-12-13 14:28:52
552
转载 ELF(Executable and Linkable Format) 介绍
http://en.wikipedia.org/wiki/Executable_and_Linkable_Format
2011-12-12 10:36:48
406
转载 深入学习C语言知识点checklist--数组
1、 你肯定知道,定义“int a[10]; ”, a[10] 这个元素是无效的。2、 你知道几种数组初始化的方法?3、 数组和指针有千丝万缕的联系而又不同,你是否对他们在不同情况下的使用进行过详细的总结?4、 “int calendar[10][20]; ”,这是一个什么样的数组?它拥有 10 数组类型的元素,还是 20 个?5、 “int a[10]; ”,数组名 a
2011-01-19 20:57:00
332
转载 多线程和多进程
<br />http://blog.csdn.net/hairetz/archive/2009/06/19/4281931.aspx#
2011-01-09 21:38:00
280
转载 面向对象UML中类关系
<br />如果你确定两件对象之间是is-a的关系,那么此时你应该使用继承;比如菱形、圆形和方形都是形状的一种,那么他们都应该从形状类继承而不是聚合。<br /> 如果你确定两件对象之间是has-a的关系,那么此时你应该使用聚合;比如电脑是由显示器、CPU、硬盘等组成的,那么你应该把显示器、CPU、硬盘这些类聚合成电脑类,而不是从电脑类继承。类间的关系 <br /> 网上关于此类的讨论非常多,发现对
2010-12-30 16:12:00
260
原创 如何查看当前用户的标识
System Administration Commands id(1M)NAME id - return user identitySYNOPSIS /usr/bin/id [-p] [user] /usr/bin/id -a [-p] [user] /usr/xpg4/bin/id [-p] [user] /usr/xpg4/bin/id -G [-n] [user] /usr/xpg4/bin/id
2010-12-20 16:21:00
822
转载 Shell、Console、Terminal
Shell、Console、Terminal ======================== 在前面的章节中,我们曾提到,电视机的遥控器,也是一种人机交互的界面,算是一种Shell。 但是这个概念并不准确,遥控器只是向Shell发送指令的工具,Shell接收到遥控器发出指令后,将指令转换为系统命令,由系统来执行。 例如我们按的遥控器上的“数字键1”,遥控器将“切
2010-12-20 13:36:00
742
转载 深入学习C语言知识点checklist——字符串
1、 strlen()函数的返回值是什么类型的? 2、 字符串strlen() 的值,是否和他占据的内存空间相同? 3、 你是否知道strcpy 函数存在的潜在风险?如何避免? 4、 如果一个字符串没有字符串结束符,而调用str 开头的库函数,会发生什么? 5、 Strcpy(),strcat(),strcmp(),strncpy(),strncat(),strncmp()内部到底是如何运行的?这些函数到底对源字符串和目标字符串做了些什么?你是否观察过它们运行时两个字符串内存的变化? 6、 上面这些函数使用
2010-12-19 20:24:00
479
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人