• 记号包括了数据结构图hipo图,5过程模板代码结构化流程图,结构化英语判定

    The notations included data flow diagrams, structure charts, HIPO diagrams, 5 procedure templates, pseudo code, structured flowcharts, structured English, and decision tables.

    youdao

  • 清单15包含两个规则定义代码

    Listing 15 contains pseudocode for the definition of two rules.

    youdao

  • 这儿大家明白就是,养成解决问题代码的好习惯,把步骤都写出来,我要告诉你们个好的程序员。

    Right, so the things we want you to take away from this are, get into the habit of using pseudo code when you sit down to start a problem, write out what are the steps.

    youdao

  • 清单1中的代码一个简化SQL查询它获取所有活跃职员姓名并列出他们英语组织名称

    The pseudo code in Listing 1 shows a simplified SQL query that retrieves employee names for all active employees and lists them with the English names of their organizations.

    youdao

  • 关于这个问题尤其注意的是,实际上当考虑这个-,问题的时候我这么我会一点代码

    And in particular, if I think about that problem - actually I want to do this - if I think about that problem, I'm going to write a little piece of pseudo code.

    youdao

  • 后面跟着要介绍抽象数据缓冲区方案,并通过代码实现来进行说明这种方案解决许多问题;最后要介绍的是一些代码片断,用以演示该解决方案好处

    That's followed by an abstract data buffer scheme, illustrated by a pseudo implementation, that solves many of those problems, followed by code snippets demonstrating the solution's benefits.

    youdao

  • 在下面的代码中,这个内核线程应该设备驱动程序close函数中进行销毁

    This kernel thread should be destroyed in the close of the device driver in this pseudo code.

    youdao

  • 在下面的代码中,使用内核api kernel _ thread注册这个内核线程

    Use the kernel API kernel_thread to register this kernel thread in this pseudo code.

    youdao

  • 但Python Python一种很值得展示工具因为读起来流线型代码并且广泛可用

    Python is a good vehicle for exposition, though, because it reads like streamlined pseudo code, and is widely available.

    youdao

  • 真正着手构建函数之前我们先来看看关于代码一些简单重要要点

    Before building a real function, let's review several points about the pseudocode that are important, but easy to overlook.

    youdao

  • 简单的控制语句if 语句,它的基本语法清单4中的伪代码演示了

    The simplest flow control statement is the if statement, whose basic syntax is demonstrated in the pseudocode shown in Listing 4.

    youdao

  • 这个程序代码几乎与其scheme实现完全相同

    The pseudo-code for this program almost identically matches its Scheme implementation.

    youdao

  • 这里叙述帮助解释2所示已编号步骤(应用程序代码清单1中给出)。

    Here is narration to help explain the numbered steps shown in Figure 2 (the application pseudo code is shown in Listing 1).

    youdao

  • 代码不仅可能的而且一些JIT编译器真实发生的。

    This pseudo code is not only possible, but is exactly what happens on some JIT compilers.

    youdao

  • 清单14两个规则定义伪代码演示了这种情况

    Listing 14 demonstrates this situation with pseudocode for the definition of two rules.

    youdao

  • 有些程序把它们自己当作输入运行可能永远不会停下来,既然这样——那么我们DOES-HALT编写一端代码,用测试一个程序把它自己作为输入参数时会发生什么好了。

    Some programs might never halt when run on themselves, though -- so let's use DOES-HALT to write pseudo-code for a program that checks to see what happens when a program is given itself as input.

    youdao

  • 有些程序员他们开始编写程序之前编写一些代码

    Some programmers write pseudo-code before they begin writing their program.

    youdao

  • 清单2提供了一个简单伪代码例子

    A simple pseudocode example is provided in Listing 2.

    youdao

  • 继续上课刚才我们写了一个代码,或者说简单地过一下。

    Alright, we are back so we just wrote a programming pseudocode or walk through a programming pseudocode.

    youdao

  • 清单1假定示例(伪代码)下面的清单2更清楚地说明了这一点

    The hypothetical sample (pseudocode) in Listing 1 and Listing 2 below make it clearer.

    youdao

  • 为了使代码清晰,这里给出了访问操纵CM用户代码并且有些地方代码替代

    In order to keep the code clear, only the code that accesses and manipulates CM user groups is provided, and some parts are replaced by pseudo code.

    youdao

  • 逻辑其他部分代码读者可以推导功能所需标准代码

    The rest of the logic is pseudo-coded with the assumption that the reader can extrapolate the standard code expected for that functionality.

    youdao

  • 然后是养成伪代码帮助定义控制习惯

    And get into the habit of using it to help you define what is the flow of control.

    youdao

  • 为了更好地理解这个解决方案,我们考察一个使用代码例子,该例子首先使用传统方法然后使用集中的解决方案。

    To better understand the solution, let's see an example using pseudo-code, first with conventional approaches, followed by the centralized solution.

    youdao

  • 清单10提供汇编语言伪代码

    From an assembly language perspective, Listing 10 provides the pseudo-code.

    youdao

  • 现在应用程序员可以编写代码(代码)2gb数据项存入网格中如下面的列表1

    So now an application programmer can write the (pseudo) code to store a data element of 2gb into the grid as shown in Listing 1 below.

    youdao

  • 代码引用有意解释代码(pseudo - code)。

    The code references are intended to be interpreted as pseudo-code.

    youdao

  • 下面一个调用事务定时器范例伪代码,以显示正确用法

    Here is some example pseudo-code for calling a transaction timer that shows correct usage.

    youdao

  • 然后最右边的i++,我们上周socks例子伪代码中,曾经见到过,不是么?只是代表i加1而已。

    And then on the right hand side I + +, we saw that in pseudocode with our socks example last week that just says increment I.

    youdao

  • 但是对于while循环意味着循环终止else子句中的代码执行一次(参见清单7中的伪代码)。

    For a while loop, however, this means the code in the else clause is executed once, after the loop is terminated (see the pseudocode shown in Listing 7).

    youdao

$firstVoiceSent
- 来自原声例句
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定