单词 | switch statement |
释义 | 例句释义: 开关语句,分支语句,偏执开关语句,切换的陈述 1. Generates a switch statement and a set of case statements for the members of the enumeration specified by the EnumerationLiteral parameter. 为EnumerationLiteral参数指定的枚举成员生成一个switch语句和一组case语句。 msdn2.microsoft.com 2. Then, it uses a state machine (a switch statement, that is) to determine whether an incoming character represents the end of a partition. 然后,它使用一个状态机(即switch语句)来决定引入的字符是否代表分区的末端。 www.ibm.com 3. Always code a break statement in the last case of a switch statement. 在switch语句最后一个case中总是键入break语句。 blog.sina.com.cn 4. If you want to select one of many blocks of code to be executed, use the Switch statement. 如果想按照条件在多组代码中选择一组来执行,使用Switch语句。 rat.blog.hexun.com 5. Then it uses the all-too-familiar switch statement to determine the error level and craft an error message appropriate to that level. 然后,它使用再熟悉不过的开关语句来决定错误等级并相应打造与该等级相适应的错误消息。 www.ibm.com 6. If the vendor name is recognized, the switch statement follows the expected pattern for that vendor. 如果商家名称被认可,switch语句就会遵照该商家的期望模式。 www.ibm.com 7. You should use the switch statement if you want to select one of many blocks of code to be executed. 如果想杂在几个代码块中选择一个来运行就使用switch语句 blog.sina.com.cn 8. Both blocks of code evaluate an int value using a switch statement that results in a human-readable string value printed to the console. 这两个代码块都会使用switch语句计算int值,从而得到输出到控制台的供人阅读的字符串值。 www.ibm.com 9. A switch statement can perform multiple actions depending on the value of a given expression. 根据给定表达式的值,switch语句可以执行多个操作。 msdn2.microsoft.com 10. ALTER TABLE permissions apply to both tables involved in an ALTER TABLE SWITCH statement. ALTERTABLE权限适用于ALTERTABLESWITCH语句涉及的两个表。 msdn2.microsoft.com 1. The Transact-SQL ALTER TABLE. SWITCH statement lets you transfer blocks of data quickly and efficiently between partitioned tables. Transact-SQLALTERTABLE.SWITCH语句使您可以在已分区表之间快速有效地传输数据块。 technet.microsoft.com 2. We experimented with different uses for pattern matching, a powerful improvement on the familiar case-switch statement. 我们实验了不同的模式匹配,作为对我们熟悉的case-switch指令的一种强大增强。 www.bing.com 3. This value can then be pulled out of the switch statement. 然后,可从switch语句取出此值。 msdn2.microsoft.com 4. The bulk of the work is done by the 250 line switch statement that makes up the EmitFragment function. 这些工作由EmitFragment函数完成,其中包含了大约250行的switch语句。 www.infoq.com 5. Note: Note that in PHP the switch statement is considered a looping structure for the purposes of continue. 注:注意在PHP中switch语句被认为是作为continue目的的循环结构。 www.phpx.com 6. A little trick of using a dictionary as a switch statement is used here (although the otherwise case remains too narrow in the example). 在这里我们使用了一个技巧,就是用一个字典作为一个switch语句(尽管示例中的otherwise情况还是太狭窄了)。 www.ibm.com 7. Enumeration types may be used in a switch statement. 枚举类型可用于switch语句中。 msdn2.microsoft.com 8. statement until the end of the switch statement. 声明直到结尾的开关声明。 goabroad.zhishi.sohu.com 9. The switch statement executes line by line (actually, statement by statement). switch语句一行接一行地执行(实际上是语句接语句)。 www.phpx.com 10. In a switch statement, the condition is evaluated only once and the result is compared to each case statement. 在switch语句中条件只求值一次并用来和每个case语句比较。 www.phpx.com 1. It is similar to a switch statement in the Java language and many other languages. 它类似于Java语言和很多其他语言中的switch语句。 www.ibm.com 2. This is part of a large switch statement that enumerates each method; this will become important later. 这是一个列举每种方法的庞大switch语句中的一部分,这些内容待会就变得很重要。 www.ibm.com 3. In a switch statement, is any case not terminated by break or return? 在switch语句中,是否有case语句没有使用break或 blog.sina.com.cn 4. Joseph Darcy's proposal adds support for strings to the switch statement. 由JosephDarcy提出,建议增加对switch语句的字符串支持。 www.infoq.com 5. Augmenting the switch statement to include Strings. switch语句包含了对字符串的支持。 www.infoq.com 6. The switch statement selects from among pieces of code based on the value of an integral expression. 根据一个整数表达式的值,switch语句可从一系列代码选出一段执行。 www.jukuu.com 7. You cannot use the SWITCH statement on replicated tables. 不能对复制表使用SWITCH语句。 msdn2.microsoft.com 8. This method used a PHP switch statement that sets the value for the class attribute based on the first argument in the URL. 这种方法使用一个PHP分支语句,根据URL中的第一个参数设置class属性值。 www.ibm.com 9. We resorted to using a simple switch statement in order to define the class value with more control. 我们使用一个简单的switch语句,以更强的控制能力定义class值。 www.ibm.com 10. The code fragment in Figure 1 shows the exact path the application took when executing the switch statement on line 111. 图1中的代码段显示了第111行执行交换陈述时所应用的准确路径。 www.ibm.com 1. In Listing 6, the switch statement determines the value to use based on the first part of the URL path. 在清单6中,switch语句根据URL路径的第一部分决定要使用的值。 www.ibm.com 2. For example, a programmer might include the assertion that you should never reach the default condition in a switch statement. 例如,程序员可能会在程序中包含断言,使您永远也不会到达switch语句中的default条件。 www.ibm.com 3. Because of the case clauses, it looks like a typical switch statement in Java, for example, and the behavior is very similar. 由于case语句的存在,它看上去像Java中的一个典型的switch表达式,实际上它们的行为也很相像。 www.bing.com 4. Use cURL, as shown in Listing 9, to verify that the switch statement is working correctly 如清单9所示,使用cURL来验证switch语句运行正常 www.ibm.com 5. A switch statement should have the following form switch语句应如以下格式 www.bing.com |
随便看 |
英汉双解词典包含2704715条英汉词条,基本涵盖了全部常用单词的翻译及用法,是英语学习的有利工具。