中英
subprogram
/ ˈsʌbˌprəʊɡræm /
/ ˈsʌbproʊɡræm /
  • 简明
  • 柯林斯
  • n.[计] 子程序;次程序;[计] 辅程序
  • 网络释义
  • 专业释义
  • 英英释义
  • 1

    [计] 子程序

            子程序(subprogram):存储在数据库中的存储过程、函数等。当在数据库上建立好后可以在其它程序中调用它们。

  • 2

     次程序

    ... subpool副储库 subprogram次程序 subprogramtypes次程序型式 ...

  • 3

     副程式

    y 副程式 ( Subprogram ): 副程式 不需要传回值,但可以用传址 方式改变变數值方式改变变數值

  • 4

     子步伐

    · 子步伐(Subprogram):加工步伐的一部门,由适当的加工节制号令挪用而起效

短语
查看更多
  • 双语例句
  • 1
    A transfer instruction to a subprogram.
    指向子程序的转移指令。
  • 2
    The aspect subprogram is used as part of a new
    方面子程序用作一类称作方面编织器的新编译器的一部分。
  • 3
    If you cannot store the subprogram name then start over by checking if DIE is available.
    如果无法保存子程序名,则检查DIE是否可用,并重新执行相关操作。
查看更多
  • 同近义词
  • 词源
  • n.

    [计]子程序;次程序;辅程序

    subroutine

  • 百科
  • Subprogram

    In computer programming, a subroutine is a sequence of program instructions that perform a specific task, packaged as a unit. This unit can then be used in programs wherever that particular task should be performed. Subprograms may be defined within programs, or separately in libraries that can be used by multiple programs. In different programming languages, a subroutine may be called a procedure, a function, a routine, a method, or a subprogram. The generic term callable unit is sometimes used.As the name subprogram suggests, a subroutine behaves in much the same way as a computer program that is used as one step in a larger program or another subprogram. A subroutine is often coded so that it can be started (called) several times and/or from several places during one execution of the program, including from other subroutines, and then branch back (return) to the next instruction after the call once the subroutine's task is done. Maurice Wilkes, David Wheeler, and Stanley Gill are credited with the invention of this concept, which they termed a closed subroutine, contrasted with an open subroutine or macro.Subroutines are a powerful programming tool, and the syntax of many programming languages includes support for writing and using them. Judicious use of subroutines (for example, through the structured programming approach) will often substantially reduce the cost of developing and maintaining a large program, while increasing its quality and reliability. Subroutines, often collected into libraries, are an important mechanism for sharing and trading software. The discipline of object-oriented programming is based on objects and methods (which are subroutines attached to these objects or object classes).In the compiling method called threaded code, the executable program is basically a sequence of subroutine calls.

查看更多