中英
interrupt
/ ˌɪntəˈrʌpt /
/ ˌɪntəˈrʌpt /
  • 简明
  • 柯林斯
  • v.打断,打扰;使暂停,使中断;阻断,遮挡
  • 高中/CET4/CET6/考研/IELTS/TOEFL/GRE/SAT/商务英语/
    • 第三人称单数

      interrupts
    • 现在分词

      interrupting
    • 过去式

      interrupted
    • 过去分词

      interrupted
  • 网络释义
  • 专业释义
  • 英英释义
  • 1

     中断

    ...都是真实的,这些故事是我那个时代的人所熟知的。有些故事可能是你不了解的,因此有些我提到的事情你可能不理解。如果你是一位汽车机修师,可能不知道中断interrupt)是什么。如果你生于1985年,你可能不知道什么是电唱机。

  • 2

     打断

    便是一局部在几米除外一出拳能把劈头树上的树枝打断(Interrupt),这种拳在本地县志里有纪录,一个人有无成就,决定于他青年时期是不是有志气。

  • 3

     打扰

    ... disturb:打扰,扰乱(使无法正常进行)。例如: interrupt打扰;打断,中断。例如: trouble:使麻烦(指心情上苦恼或行动上带来不便)。例如: ...

  • 4

     插嘴

    插嘴(Interrupt):“门当户对?”

短语
查看更多
  • 双语例句
  • 原声例句
  • 权威例句
  • 1
    Why must she interrupt?
    她为什么偏要打断呢?
    《柯林斯英汉双解大词典》
  • 2
    Can I interrupt you just for a minute?
    我可不可以打断你一会儿?
    《柯林斯英汉双解大词典》
  • 3
    Please continue—I didn't mean to interrupt.
    请继续往下说,我并非有意打断你的话。
    《牛津词典》
查看更多
  • 词典短语
  • 同近义词
  • 词源
查看更多
  • 百科
  • Interrupt

    In systems programming, an interrupt is a signal to the processor emitted by hardware or software indicating an event that needs immediate attention. An interrupt alerts the processor to a high-priority condition requiring the interruption of the current code the processor is executing. The processor responds by suspending its current activities, saving its state, and executing a function called an interrupt handler (or an interrupt service routine, ISR) to deal with the event. This interruption is temporary, and, after the interrupt handler finishes, the processor resumes normal activities. There are two types of interrupts: hardware interrupts and software interrupts.Hardware interrupts are used by devices to communicate that they require attention from the operating system. Internally, hardware interrupts are implemented using electronic alerting signals that are sent to the processor from an external device, which is either a part of the computer itself, such as a disk controller, or an external peripheral. For example, pressing a key on the keyboard or moving the mouse triggers hardware interrupts that cause the processor to read the keystroke or mouse position. Unlike the software type (described below), hardware interrupts are asynchronous and can occur in the middle of instruction execution, requiring additional care in programming. The act of initiating a hardware interrupt is referred to as an interrupt request (IRQ).A software interrupt is caused either by an exceptional condition in the processor itself, or a special instruction in the instruction set which causes an interrupt when it is executed. The former is often called a trap or exception and is used for errors or events occurring during program execution that are exceptional enough that they cannot be handled within the program itself. For example, if the processor's arithmetic logic unit is commanded to divide a number by zero, this impossible demand will cause a divide-by-zero exception, perhaps causing the computer to abandon the calculation or display an error message. Software interrupt instructions function similarly to subroutine calls and are used for a variety of purposes, such as to request services from low-level system software such as device drivers. For example, computers often use software interrupt instructions to communicate with the disk controller to request data be read or written to the disk.Each interrupt has its own interrupt handler. The number of hardware interrupts is limited by the number of interrupt request (IRQ) lines to the processor, but there may be hundreds of different software interrupts. Interrupts are a commonly used technique for computer multitasking, especially in real-time computing. Such a system is said to be interrupt-driven.

查看更多