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

 

词条 enable
释义

词典解释

enable 英音:[in'eibl]美音:[in'ebl]

vt.

1. 使能够,使(成为)可能,使可行,使容易,使有效,使实现;

(enable sb. to do )

例句:Aeronautics enables us to overcome great distances. 航空学使我们能征服远距离。

The bird's large wings enable it to fly. (enable sb to do something)

这鸟的大翅膀使它能飞。

2.为(做某事)提供手段(或条件、机会等); 例句:This dictionary enables us to understand English words. 这部词典能帮助我们理解英语词汇。

3.授予…权力,授权给,许可,批准。 例句:This document will enable her to pass through the enemy lines unmolested. 这证件将使她能平安无事地通过敌人防线。

变形:动词过去式enabled 过去式enabled , 现在分词enabling 第三人称单数enables

函数名

功 能: 开放硬件中断

用 法: void enable(void);

程序例:

/* ** NOTE:

This is an interrupt service routine. You can NOT compile this program

with Test Stack Overflow turned on and get an executable file which will

operate correctly.

*/

#include <stdio.h>

#include <dos.h>

#include <conio.h>

/* The clock tick interrupt */

#define INTR 0X1C

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++;

/*

re enable 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;

}

交换机配置命令

enable

> enable

Switch# (从用户模式进入允许(特权)模式)

编程语言

获取或设置一个值,该值指示是否启用应用程序域。

命名空间:System.Web.Configuration

程序集:System.Web(在 system.web.dll 中)

语法

Visual Basic(声明)

Public Property Enable As Boolean

Visual Basic(用法)

Dim instance As HttpRuntimeSection

Dim value As Boolean

value = instance.Enable

instance.Enable = value

电气方面

常用来作为芯片或接口的使能端口,比如IIC,SPI或FLASH的使用前,CPU需要使能该总线或外设的ENABLE脚,通知器件CPU正准备访问或使用它。

ENABLE管教的使用,可以让CPU处理和访问多外设或多总线环境。

随便看

 

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

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/12/23 19:54:52