单词 | enum | ||||||||||||
释义 | enum
更多释义 收起释义 例句释义: 枚举,枚举类型,列举 1. Being able to run through the values of an enum is nice, but even more important is the ability to make decisions based on an enum's values. 能够在枚举的值之间移动很好,但是更重要的是根据枚举的值进行决策。 www.ibm.com 2. Just as with any constant, all references to the individual values of an enum are converted to numeric literals at compile time. 与任何常量一样,对枚举中各个值的所有引用在编译时均将转换为数值文本。 technet.microsoft.com 3. It shows up in the WSDL file as an enumeration element, and the value restrictions specified by your Enum list in step 4 apply. 它在WSDL文件中显示为一个枚举元素,第4步中枚举列表所指定的值限制将应用。 www.ibm.com 4. This creates the Java class with the customized types and a type safe enum Java class, as shown in Listing 7. 这会创建包含定制类型的Java类和类型安全的enumJava类,见清单7。 www.ibm.com 5. A Java enum is an arbitrary set of values that are stored in a specific order. Javaenum是按照特定顺序保存的随意的值集合。 www.ibm.com 6. It returns one of the FileVisitResult's enum values to tell the file visitor API what to do next. 它返回一个FileVisitResult枚举值,来告诉文件访问程序API下一步做什么。 www.ibm.com 7. Code that attempts to use enumerations will fail with a NoClassDefFoundError looking for the java. lang. Enum base class. 尝试使用枚举的代码会失败,在寻找java.lang.Enum基类时出现NoClassDefFoundError。 www.ibm.com 8. ENUM is introduced as the addressing technology between the telephone network and the Internet. ENUM就是作为电信网和互联网的寻址技术出现的。 stae.com.cn 9. Enum, Class, and Collections are additional built-in types we've added -- look for some of these in Java EE 6. 枚举、类和集合是我们所增加的额外的内建类型——我们期待在JavaEE6中也能具备这样的类型。 www.infoq.com 10. Creating EAz using Enums and EnumSets in lieu of custom bit vectors turned out to be quite straightforward. 事实证明,使用Enum和EnumSet代替自定义位向量来创建EAz非常简单。 www.ibm.com 1. And, thanks to conversion methods declared on the enum, it's even trivial to convert HOURS back to MILLISECONDS when time speeds up. 同时,因为在列举上声明了转换方法,在时间加快时,将HOURS转换回MILLISECONDS甚至变得更容易。 www.ibm.com 2. Similarly, you can turn the XSD enumerations into type safe Java enum types, as shown in Listing 6. 同样,可以把XSD枚举转换为类型安全的Javaenum类型,见清单6。 www.ibm.com 3. The ENUM search subsystem provides the communication interface for users and completes the analysis and inquiry of ENUM service. 其中,ENUM查询子系统为用户提供通信入口,完成ENUM服务的解析与查询。 www.fabiao.net 4. The pre-study on standards of NGN and ENUM had been started and had made certain progress. 关于NGN的以及ENUM的标准予研工作已经启动,并已经取得了一定的进展。 www.22doc.com 5. The Java language lacks a native Range type, but it does offer a similar concept in the form of enums. Java语言缺乏原生的Range类型,但是提供了一个类似地概念,采取enum的形式。 www.ibm.com 6. The enum constants in AllActions are effectively the names of a configured application's commands. AllActions中的Enum常量相当于配置的应用程序命令的名称。 www.ibm.com 7. Second, on the basis of analysis of ENUM server structure and all subsystems, each subsystem is designed and implemented in details. 第二,在对ENUM服务器体系结构及各子系统分析的基础上,分别对各子系统进行了详细的设计与实现。 www.fabiao.net 8. For properties of type string, an optional Enum definition has been added. Property values will be validated against the Enum. 对字符串的属性,增加了一个可选的枚举类型定义,枚举的属性值将被验证。 www.cryenginecn.com 9. This includes the conversion of COM enum arguments to Java int variables and the default values for what were optional arguments in COM. 这包括从COMenum参数到Javaint变量的转化,以及那些在COM中的可选参数的缺省值。 www.ibm.com 10. EAz is an Enum-based authorization extension for Java EE authorization. EAz是JavaEE授权的基于Enum的授权扩展。 www.ibm.com 1. The MySQL database supports ENUM string enumerated data types which the DB2 database product does not directly support. MySQL数据库支持DB2数据库产品不直接支持的ENUM字符串枚举数据类型。 www.ibm.com 2. The enum constants in AllPermissions represent the unary permissions that actually control authorization. AllPermissions中的Enum常量表示实际控制授权的一元权限。 www.ibm.com 3. It also generates Java units containing module constants and enum literals defined in the type library. 它还生成Java单元,里面包含类型库中定义的模块常量和枚举标量。 www.ibm.com 4. com. sosnoski. dwct. Primitive is an enum class for the Java language primitive types. Primitive是一个针对Java语言原语类型的enum类。 www.ibm.com 5. Hence, at the byte code level, there is no connection between Scala enumerations and the enum constructs in Java and C#. 因此,在字节码的层次,Scala枚举和Java,C#中构造的枚举没有任何联系。 www.bing.com 6. Or, does that make more sense in a class that has a variable of enum type Size? 或者说,在一个拥有枚举类型Size变量的类中做这些更有意义吗? www.ibm.com 7. Then you use string matching to map the user agent string to an Enum called Agents. 然后,您使用字符串机器将这个用户代理字符串映射到一个名为Agents的Enum。 www.ibm.com 8. Some methods look familiar while others are specific to the Enum class. 一些方法看起来很熟悉,而其他一些方法则是特定于Enum类的。 www.ibm.com 9. You don't have to limit the use of constructors to indirect Enum constructor calls. 不必将构造函数的使用限制为间接Enum构造函数调用。 www.ibm.com 10. Returns the target device's CPU Family as an enum. 以枚举型式返回目标设备的CPU语系。 blog.sina.com.cn 1. Enum also picked up a HasFlag method to make reading flags easier. Enum也实现了HasFlag方法使大家读取标志更容易。 www.infoq.com 2. Begin by declaring all the permissions in your application in the static AllPermissions enum. 首先,在静态AllPermissionsenum中声明应用程序中的所有权限。 www.ibm.com 3. The LotteryFactory has an enum of the different types of lotteries. LotteryFactory有彩票的各种枚举类型。 www.ibm.com 4. In the process, the developers of Java 5 implemented the Enum and EnumSet and map as an efficient binary entity. 在此过程中,Java5的开发人员实现了Enum和EnumSet,并将其映射为有效的二进制实体。 www.ibm.com 5. In the dialog that appears, choose Enum as the type. 在出现的对话框中,选择Enum作为类型。 www.ibm.com 6. In particular, when facet. method=enum, a filterCache entry is added for each term tested. 特别是,当TermEnum方法是使用一个filterCache项为每个测试项补充说。 www.cnblogs.com 7. Avoid specifying a type for an enum. 避免使用指定类型的枚举类型。 space.itpub.net 8. ENUM is a new routing manner in the NGN, it can achieve the convergence between the PSTN arid the Internet. ENUM技术是下一代网络范畴内的一种新的寻址方式,可以很好地实现电信网和互联网的融合。 stae.com.cn 9. Select the access level of the enum from the Access drop-down list. 从“访问”下拉列表中选择枚举的访问级别。 technet.microsoft.com 10. EAz sample code is available showing how to translate database strings to and from EAz enum format. EAz示例代码可用来显示数据库字符串格式和EAzEnum格式之间如何相互转换。 www.ibm.com 1. Simple properties are all non-string properties, such as integer, boolean, and enum properties, and only hold a single value. 简单属性全都是非字符串属性(如整数、布尔值及枚举属性),并且只包含单个值。 technet.microsoft.com 2. Enum, it is pink instead of blue, and it has a colored border on the left and top margins. “枚举”且为粉红色而不是蓝色,并且其左侧和顶部边距上具有彩色边框。 technet.microsoft.com 3. For enums, the default value is the first value listed in the enum's type definition. 对枚举来说,默认值是枚举类型定义中的第一个值。 blog.csdn.net 4. When the compiler encounters an enumerated type, it generates a class that extends the library class java. lang. Enum. 当编译器遇到枚举类型时,生成的类将扩展库类java. www.ibm.com 5. MTK maps the ENUM data type to VARCHAR(255) with check constraint. MTK将ENUM数据类型映射到带检查约束的VARCHAR(255)。 www.ibm.com 6. Could not find enum device to match hardware. 未找到匹配的设备类别。 www.kb120.com 7. I created an enum type, EventType, and class member eventType. 我创建了一个枚举类型EventType和类成员eventType。 www.ibm.com 8. But, just like Iterable, the Enum class is not present in the JDK 1. 4 class library. 但是,同Iterable一样,在JDK1.4类库中也没有Enum类。 www.ibm.com 9. EAz requires Java 5 or later to operate because of its reliance on the Java 5 Enum classes. EAz需要Java5或更高版本才能运行,因为它依赖于Java5Enum类。 www.ibm.com 10. For more information on enums, see enum class. 有关枚举的更多信息,请参见枚举类。 207.46.16.251 1. Even bulk operations (such as containsAll and retainAll) should run very quickly if the specified collection is also an enum set. 如果指定的集合也是Enum集,则甚至批量操作(如containsAll和retainAll)也应非常快地运行。 www.ibm.com 2. When you do have a VARCHAR field, it can actually suggest you to change that column type to ENUM instead. 当你有一个VARCHAR字段时,这个建议会告诉你把其改成ENUM类型。 yq329.blog.163.com 3. Since both enums are static, their members can be referred to directly from anywhere in an application, for example as 由于两个enum都是静态的,因此其成员可以从应用程序中的任何位置直接引用,例如 www.ibm.com 4. Studying on ENUM-based Telephone Number Registration and Management Solutions 基于ENUM的电话号码注册管理方案初探 www.ilib.cn 5. Visualization (graphic representation) of C class, struct, enum, and typedef as UML classifiers C 类的可视化(图形化表示),数据类型结构,枚举以及UML分类符的类型定义。 www.ibm.com 6. Fixed PersistentEnumType incorrectly assumes enum types have zero-value defined 修复了OersustebtEnumType不正确的处理具有零值定义的枚举 www.infoq.com 7. Discussion on ENUM System Frame of and Addressing Resolution ENUM系统架构及寻址解析的探讨 www.ilib.cn 8. Three Big Problems Facing the Global ENUM Development ENUM发展面临的三大问题 www.ilib.cn 9. ENUM data type conversion support for MySQL source to DB2 database product target 从MySQL源到DB2数据库产品目标的ENUM数据类型转换支持 www.ibm.com 10. The Research of Top Level Domain of ENUM ENUM顶级域问题的研究 www.ilib.cn |
||||||||||||
随便看 |
|
英汉双解词典包含2704715条英汉词条,基本涵盖了全部常用单词的翻译及用法,是英语学习的有利工具。