请输入您要查询的百科知识:

 

词条 disabled
释义

基本信息

adj. 形容词

1. 残废的,有缺陷的, 丧失能力的。

2.有残疾的,无能力的。

vt.及物动词

1.使无能力, 使残废。

发音

D.J.[dis'eibl]

K.K.[dis'ebəl]

过去式

disabled

过去分词

disabled

现在分词

disabling

例句

The accident disabled him for work.

这起事故使他丧失了工作能力。

One bomb can disable a ship.

一颗炸弹就能炸毁一艘船。

释义

Disabled 是最广为接受的词语,指残疾人或伤残人。

handicapped 稍有些过时,现在许多人认为该词有冒犯意思。现在人们喜欢用

disability而非handicap。

disabled people 比 the disabled 更为所人接受,原因是听起来比较个人化。

disabled 和 disability 与其它词连用可以表示智力状况:

mentally disabled 有智力缺陷;

learning disabilities 学习障碍。

网络上还有很多解释:

1.禁用

2. 残废的,残疾的

3. 禁用此程序

4. 伤残的;使失去战斗力的

同义词

及物动词 vt.

使无能;使残废

crippledebilitateenfeebleweaken

反义词

enable

C函数用法及作用

函数名: disable

功 能: 屏蔽中断

用 法: void disable(void);

程序例:

/***NOTE: This is an interrupt service

routine. You cannot compile this program

with Test Stack Overflow turned on and

get an executable file that operates

correctly. */

#include <stdio.h>

#include <dos.h>

#include <conio.h>

#define INTR 0X1C /* The clock tick

interrupt */

void interrupt ( *oldhandler)(void);

int count=0;

void interrupt handler(void)

{

/* disable interrupts during the handling of

the interrupt */

disable();

/* increase the global counter */

count++;

/* reenable interrupts at the end of the

handler */

enable();

/* call the old routine */

oldhandler();

}

int main(void)

{

/* save the old interrupt vector */

oldhandler = getvect(INTR);

/* install the new interrupt handler */

setvect(INTR, handler);

/* loop until the counter exceeds 20 */

while (count < 20)

printf("count is %d\",count);

/* reset the old interrupt handler */

setvect(INTR, oldhandler);

return 0;

}

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/11/16 9:39:09