单词 | constructor |
释义 |
复数:constructors 例句释义: 建造者 1. The constructor function has no parameters and returns an instance of the type with all of its attributes set to null values. 构造函数没有参数,并且返回的类型实例中的所有属性都为空。 www.ibm.com 2. Constructor, where the name of each value is converted to a string, and the ordinal setting represents a one-up value for each setting. 构造函数中,在这里,每个值的名称都被转换成一个字符串,并且序数设置表示了每个设置的优先值。 www-128.ibm.com 3. This version of the constructor allows you to specify the group to which an item belongs. 此版本的构造函数允许您指定项所属的组。 msdn2.microsoft.com 4. The * at the end of the CONSTRUCTOR production signifies that there can be zero or more occurrences of that production. CONSTRUCTOR产品尾部的*意味着该产品可以不存在,也可以存在更多。 www.ibm.com 5. Unlike destructors , it is often the case that something done inside a constructor might throw an exception. 与析构函数不同,构造函数内部所做的事情经常会抛出异常。 dictsearch.appspot.com 6. The best way to make sure this doesn't happen is to initialize variables where you declare them instead of in the body of every constructor. 确保这些不会发生的最好的方法是在声明变量的时候就初始化,而不是在每个构造函数中进行初始化。 www.diybl.com 7. The programming language compiler added a default static constructor to your type and did not make it private. 编程语言编译器已向您的类型中添加默认静态构造函数,但未将其设置为私有。 technet.microsoft.com 8. Notice that this constructor takes the $idsadmin object as a parameter and stores it in its own $idsadmin class variable. 注意,这个构造函数使用$idsadmin对象作为参数并将它保存在自己的$idsadmin类变量中。 www.ibm.com 9. This constructor returns a value, however, which means that this value takes the place of the regular Object, which itself is thrown away. 但是,这个构造函数返回一个值,这意味着这个值取代常规的Object,而后者将被抛弃。 www.ibm.com 10. Any constructors that you define for structures must have at least one argument so that they do not conflict with the default constructor. 为结构定义的任何构造函数都必须至少有一个参数,以便不会与默认构造函数冲突。 technet.microsoft.com 1. A static constructor is used to initialize any static data, or to perform a particular action that needs to be performed once only. 静态建构函式可以用来初始化任何静态资料,或执行只需执行一次的特定动作。 technet.microsoft.com 2. You defined a static constructor for your type and did not make it private. 您定义了类型的静态构造函数,但未将其设置为私有。 technet.microsoft.com 3. Which passes the name of the file containing the public key as a parameter to its constructor. 它将包含公钥的文件的名称作为参数传递至其构造函数。 msdn2.microsoft.com 4. This constructor allows you to specify the local IP address and port number on which to listen for incoming connection attempts. 此构造函数允许指定本地IP地址和用于侦听传入的连接尝试的端口号。 www.kuenglish.info 5. A constructor is just a special method that creates an instance (or object) of a particular class. 构造函数只是创建特定类实例(或对象)的特殊方法。 www.ibm.com 6. The caller of this constructor is required to ensure that this string has been localized for the current system culture. 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。 msdn2.microsoft.com 7. Property gets a value indicating whether the field can only be set in the body of the constructor. 属性获取一个值,该值指示此字段是否只能在构造函数的主体中设置。 msdn2.microsoft.com 8. The class itself provides no benefits: it has no fields, no constructor (besides the autogenerated one from Java), and no state. 类本身不提供任何效益:它没有字段,没有构造函数(除了Java自动生成的),没有状态。 www.ibm.com 9. Constructor provides the name for the Class and initializes the properties which can be different in every instance of the Class. 构造器会为类提供一个名称,和初始化每一个类的实现的属性。 www.cnblogs.com 10. The user has no control over when the static constructor is called. 用户不能控制何时调用该静态构造函数。 technet.microsoft.com 1. Thus, by declaring the variables with this type, you can directly assign the result of a constructor call to the corresponding variable. 这样,通过声明这种类型的变量,可以直接把构造函数调用的结果分配给对应的变量。 www.ibm.com 2. To maintain better performance, do not set the size of a control in its constructor. 若要保持更好的性能,请不要在控件构造函数中设置控件的大小。 msdn2.microsoft.com 3. In the case of the code I've been using for this article, there's a major error in the interaction between the two loops in the constructor. 对于我在本文中用到的代码,构造函数中两个循环之间的相互作用中存在一个重大错误。 www.ibm.com 4. Traits don't support auxiliary constructors, nor do they accept an argument list for the primary constructor, the body of a trait. Traits不支持辅助构造函数,它们也不支持在主构造函数,trait的主体里的参数列表。 www.bing.com 5. An empty public constructor serves no purpose. Such a constructor need not be defined at all. 一个空的公有构造体没有用处,这样一个构造体完全不需要被定义。 blog.csdn.net 6. Control automatically calls the default constructor of a business object to create and instance of it using reflection. 控件自动调用业务对象的默认构造函数,以使用反射创建该对象的实例。 msdn2.microsoft.com 7. Upon insertion of the highlighted record in table "wells" , the insert trigger calls the point constructor and the transform function. 在“wells”表中插入突出显示的记录时,插入触发器调用点构造函数和转换函数。 www.ibm.com 8. This shouldn't come as a surprise since the name of the constructor function is effectively the name of the class. 这不应当让人感到吃惊,因为构造函数的名称实际上是类的名称。 msdn.microsoft.com 9. Constructor is called for that culture, and the creation process is time consuming. 构造函数时创建,创建过程非常耗时。 msdn2.microsoft.com 10. This behavior is referred to in the DI world as constructor injection, because the instance is passed through one of the constructors. 这个行为在DI世界中称作构造函数注入,因为实例是通过一个构造函数传递的。 www.ibm.com 1. As you saw earlier, the code for a static field initializer executes inside an implicit type constructor. 正如您在前面看到的那样,静态字段初始值设定项的代码在隐式类型构造函数的内部执行。 blog.sina.com.cn 2. If the class has no default constructor, then the class may not be used in these contexts . 如果类没有默认构造函数,则该类就不能用在这些环境中。 dictsearch.appspot.com 3. The only way to set such a field is through the exception constructor. 设置这样一个字段的惟一方法就是通过异常构造器(exceptionconstructor)。 www.ibm.com 4. Notice how the constructor of this class takes in a com. ibm. collaboration. realtime. messages. MessageHandler object as a parameter. 需注意此类的构造函数使用com.ibm.collaboration.realtime.messages.MessageHandler对象作为参数的方式。 www.ibm.com 5. Constructor allows you to keep the linked list for the map in access order, from least recently used to most recently used. 构造函数使您能够保持映射表的链表的存取顺序,从使用时间距今最远的到最近使用的。 www-128.ibm.com 6. By the time the body of the constructor begins executing, initialization is complete. 在开始执行构造函数的函数体之前,要完成初始化。 blog.163.com 7. This type actually defines the signature of a constructor for the specified class and a matching sequence of values. 该类型实际定义了指定用于类和值的匹配序列的构造器的签名。 www.ibm.com 8. The default constructor has no arguments; its implementation calls the base class constructor. 默认的构造函数没有参数;其实现将调用基类构造函数。 msdn2.microsoft.com 9. Constructor is displayed by a visual designer when you access the property, event, or extender to which the attribute applies. 当访问该属性所应用于的属性、事件或扩展程序时,可视化设计器将显示在。 www.kuenglish.info 10. A copy constructor was not accessible in a base class and was therefore not generated for a derived class. 不可访问基类中的复制构造函数,因此无法为派生类生成复制构造函数。 technet.microsoft.com 1. When its constructor is called, the Session creates many objects to assist with its management responsibilities. 当其构造器被调用时,Session创建许多对象来协助进行管理。 www.ibm.com 2. Mass media played an active role in creating such a symbol consumption case as a "constructor" of social reality. 同时,大众传媒积极参与文化传播,并利用其对社会真实的“建构”作用催生了符号消费现象。 paper.pet2008.cn 3. Allocates a new object instance of the specified type , without attempting to call a constructor method . 分配一个新的指定类型的对象实例,而不尝试调用构造函数方法。 www.bing.com 4. Adding a constructor or two for each exception class rarely takes more than a few minutes per exception. 对于一个异常,为每个异常类添加一个或两个构造器,所花费时间很少不超过几分钟。 www.ibm.com 5. Constructor to apply access rights at the point of creation of a file. 构造函数在文件的创建点应用访问权限。 msdn2.microsoft.com 6. The uniqueness of the class cannot be imposed as a compile-time constraint on the subclass unless you use a private constructor. 由于使用了私有的构造方法,单例类不能被强制转化为一个编译期的常量。 www.bing.com 7. This paper studies the principal-agent relationship between the owner, supervisor and constructor, and sets up the adverse selection model. 从业主、监理以及施工方三者的整体委托代理关系入手,建立了相应的逆向选择模型; www.ceps.com.tw 8. The copy constructor created ( synthesized ) by the compiler for classes that do not explicitly define the copy constructor. 由编译器为没有显式定义复制构造函数的类创建(合成)的复制构造函数。 dictsearch.appspot.com 9. Each public constructor for an attribute class defines a valid sequence of positional parameters for that class. 属性(Attribute)类的每个公共构造函数为该类定义一个有效的定位参数序列。 msdn2.microsoft.com 10. The body of the derived-class constructor is called. 调用派生类的构造方法; www.xue5.com 1. According to the Guice best practices guide, constructor injection is the preferred way to ask for your dependencies. 根据Guice的最佳实践指南,构造函数注入是询问依赖项的首选方式。 www.ibm.com 2. Note: Publishing functions are sometimes also referred to as constructor functions. 注:发布函数有时候也称为构造器函数。 www.ibm.com 3. A good analogy for a constructor method is a building contractor, who takes the blueprints for your house and builds it. 构造函数方法好比建筑承包人,它利用房子的设计图建房子。 www.ibm.com 4. The object literal stub applied to the constructor records it's interaction with the system under test via local variables url and callback. 通过本地变量url和callback,应用于构造函数的objectliteralstub能够记录它与被测系统的交互行为。 www.infoq.com 5. This sequence of events results in a period of time where thread 2 returned an object whose constructor had not executed. 此事件序列发生在线程2返回一个尚未执行构造函数的对象的时候。 www.ibm.com 6. In JavaScript, an object constructor is just a function -- the function's name is the object's name. 在JavaScript中,对象构造方法(constructor)仅仅是一个函数——这个函数的名称是对象的名称。 www.ibm.com 7. A method is considered a constructor if it has the same name as the class and no return type. 如果方法与类同名且没有返回类型,则将其视为构造函数。 msdn2.microsoft.com 8. The constructor will set the credit limit instance variable to be equal to that specified as a parameter. 构造器会把该实例变量(即信用限制)设为一个参数。 dict.bioon.com 9. The constructor method uses the normalize method to ensure that the override value strings do not contain symbols used by XML parser. 构造函数方法使用标准化的方法来确保重载值中不包含XML解析器所使用的符号。 www.ibm.com 10. This constructor can only be called by an inherited class. 此构造函数只能由继承的类调用。 msdn2.microsoft.com 1. In Listing 1, main defines the code to be benchmarked as a Callable and simply supplies it to a Benchmark constructor. 在清单1中,main把要测试的代码定义为Callable,然后提供给Benchmark构造函数。 www.ibm.com 2. Let's start with the constructor for the handler class (see Listing 3) to see the how the page has been retrofitted for localization. 让我们从处理程序类的构造函数开始(参见清单3)来看看如何为本地化翻新页面。 www.ibm.com 3. The next step is to specify a business object implementation to the constructor of the invocation handler. 下一步是把业务对象实现指定给调用处理程序的构造函数。 www.ibm.com 4. Tests to see if an object is an instance of the given type or constructor. 通过测试确定对象是否是给定类型或构造函数的实例。 msdn2.microsoft.com 5. Designers and constructor should not ignore their quality, and do well construction bit by bit, with a small fine reflecting great learning. 设计者和施工者都不应忽视它们的质量,要做好点点滴滴构造,用小处的精细体现大学问。 www.qikan.com.cn 6. Do not add parentheses to a method or constructor name unless you want to specify a particular signature. 不要对方法或构造函数名增加括号,除非你想表示特定的签名。 blog.sina.com.cn 7. This constructor is called to initialize state in the type whenever an instance of the derived class is created. 每当创建派生类的实例时,都会调用此构造函数以初始化类型中的状态。 msdn2.microsoft.com 8. Notice that the lack of a no-argument constructor violates the JavaBeans standard, which insists on a default constructor. 需要注意的一点是,无参数构造函数的缺失违反了JavaBeans的标准,该标准坚持要有一个默认的构造函数。 www.ibm.com 9. Then you change the constructor to take the name of the table, as well as the names of the fields in the table. 然后,把构造函数修改成接受表的名称和表中字段的名称。 www.ibm.com 10. Since the returned value from the server is XML, you pass it directly to the constructor of your DOM wrapper. 因为服务器返回的数据是XML,所以将它直接传递给DOM包装器的构造器。 www.ibm.com 1. A type parameter can be constrained to be a reference type, a non- nullable value type, and to have a default constructor . 类型参数可以约束为引用类型、不可为空值类型和具有默认构造函数。 www.bing.com 2. Logic says one should be able to do things like mark the property ReadOnly and set its value in the constructor. 逻辑上来说,开发人员可以把该属性标志为ReadOnly并在构造函数中设置它的值。 www.infoq.com 3. First, we define our reference class such that object creation functions as the acquisition of a resource through its class constructor. 首先,定义引用类,使对象创建能够用来通过类构造函数获取资源。 msdn2.microsoft.com 4. The constructor to be invoked must be accessible and provide the most specific match with the specified argument list . 要调用的构造函数必须是可访问的,并且提供与指定参数列表匹配程度最高的匹配项。 www.bing.com 5. This method should not be called directly; it is called by the constructor. 不应直接调用此方法;它通过构造函数来调用。 msdn2.microsoft.com 6. It calls the constructor for that object, passing a reference to the newly created object as the this pointer. 它为该对象调用构造函数,给新创建的对象传递一个引用,作为this指针。 msdn2.microsoft.com 7. Constructor to implement custom initialization actions for your expression editor implementation. 构造函数来实现您的表达式编辑器实现的自定义初始化操作。 msdn2.microsoft.com 8. Constructor to implement custom initialization actions for your expression editor sheet implementation. 构造函数,用于实现表达式编辑器表实现的自定义初始化操作。 msdn2.microsoft.com 9. As each path is processed, the constructor adds the path and the data structure for that path to a pair collection. 处理每一路径时,这个构造函数就将这个路径和这个路径的数据结构加到一个成对集合(paircollection)中。 www.ibm.com 10. This is extremely simplistic and leads to an exception being thrown when a constructor or method is called with the wrong argument types. 这极为简单,使用错误的参数类型调用构造函数或方法时,会引发异常。 www.ibm.com 1. Unless overridden for a specific object, this conversion happens within the constructor of the internal DocumentContext class. 除非针对特定对象重写,否则这种转变应在内部DocumentContext类的构造函数中发生。 www.ibm.com 2. Using an array constructor, you can create an array of a given native type with a specified (fixed) size. 您可以使用阵列建构函式来建立一个具有指定(固定)大小且特定原生型别的阵列。 msdn.microsoft.com 3. The constructor and destructor of the queue class are responsible for the creation and destruction of the mutex, as shown in Listing 1. 队列类的构造函数和析构函数负责创建和销毁互斥锁,见清单1。 www.ibm.com 4. Do not use the this reference unless invoking another constructor from within a constructor. 除非在构造函数中调用另一个构造函数,否则不用使用。 www.zhanso.com 5. Only then like this, can raise Germany, the line, the wisdom, can the parallel socialism constructor and the successor. 只有这样,才能培养出德、行、智、能并行的社会主义建设者和接班人。 cn.qikan.com 6. This event is the last thing to run in the constructor of the class that the user code is running in. 此事件是在运行用户代码的类的构造函数中运行的最后一个事件。 msdn2.microsoft.com 7. The collection is immutable (read-only) and has no public constructor. 该集合为不可变(只读)的,并且没有公共构造函数。 msdn2.microsoft.com 8. Constructor verifies the minimum acceptable length of the string being validated. 构造函数可以验证正在接受验证的字符串可接受的最小长度。 msdn2.microsoft.com 9. AssemblyDelaySignAttribute, which indicates that delay signing is being used by passing true as a parameter to its constructor. AssemblyDelaySignAttribute,它通过将true作为参数传递至其构造函数,表明正在使用延迟签名。 msdn2.microsoft.com 10. When applied to a class, the compiler implicitly calls a component-initializing method from the default synthetic constructor. 应用于类时,编译器从默认的合成构造函数隐式调用一个组件初始化方法。 msdn2.microsoft.com 1. AssemblyDelaySignAttribute, which indicates that delay signing is being used by passing true as a parameter to its constructor. AssemblyDelaySignAttribute,它通过将true作为参数传递至其构造函数,表明正在使用延迟签名。 msdn2.microsoft.com 2. When applied to a class, the compiler implicitly calls a component-initializing method from the default synthetic constructor. 应用于类时,编译器从默认的合成构造函数隐式调用一个组件初始化方法。 msdn2.microsoft.com 3. Also suppose that the Collaborator object requires a string and a primitive int as parameters passed to the constructor. 同时假定Collaborator对象要求使用字符串和原始的int作为传递给构造函数的参数。 www.ibm.com 4. For future compatibility, this constructor allows you to create other HTML cell elements that could become available. 为了未来的可兼容性,此构造函数允许您创建可能会出现的其他HTML单元格元素。 msdn2.microsoft.com 5. Each element inside the complexType is mapped to a parameter in the constructor of the Java exception and a getter method. complexType内部的每个元素都被映射到Java异常的构造器中的参数和getter方法。 www-128.ibm.com 6. The base class constructor checks a number of the parameters for a connection point and can throw several exceptions. 基类构造函数检查连接点的一些参数,并可能会引发若干异常。 msdn2.microsoft.com 7. If you want your object to be deserialized in a custom manner as well, you must use a custom constructor. 如果希望同样以自定义方式反序列化对象,则必须使用自定义构造函数。 msdn2.microsoft.com 8. As a general rule, add a PatternParameterDelegate statement to the constructor of each parameter class of the composed pattern. 为复合模式的每个参数类的构造函数增加PatternParameterDelegate声明已成为一种普遍规律。 www.ibm.com 9. Keyword to call the constructor of a base class. 关键字来调用基类的构造函数。 msdn2.microsoft.com 10. Classes have no direct relationship between constructor parameters, fields, and properties. 类与构造函数参数、字段和属性没有直接关系。 technet.microsoft.com 1. Classes have no direct relationship between constructor parameters, fields, and properties. 类与构造函数参数、字段和属性没有直接关系。 technet.microsoft.com 2. Instead of a constructor, the body of the class contains the class initializer. 方法来表示。类的主体包含类初始设定项,而不是构造函数。 www.ibm.com 3. Name is mapped to a getter method and a parameter in the constructor of the Java exception. 名称映射到gettermethod和Java异常的构造器中的参数。 www-128.ibm.com 4. A public class must have at least one public member or protected constructor. 一个公有的类必须至少有一个公有成员或保护构造体。 blog.csdn.net 5. A. A matrix class in which the actual matrix is allocated dynamically within the constructor and is deleted within its destructor. 动态分配,对象的建立是利用构造函数,删除是利用析构函数。 zhidao.baidu.com 6. The Java class creates an instance of a Java class and calls the best matching constructor, passing any arguments from the script. 此Java类创建Java类的实例,并调用最佳匹配构造函数(从脚本传递任何参数)。 www.ibm.com 7. Note that the property can be set using one of the constructor overloads . 注意,使用其中一个构造函数重载可以设置该属性。 www.bing.com 8. This class contains a constructor and a number of convenience methods that help retrieve information from the DOM tree. 这个类包含一个构造函数和几个方便的方法,可用于从DOM树检索信息。 www.ibm.com 9. After this method is called, the instance is ready for the constructor method to be called. 在调用此方法后,该实例可用于要被调用的构造函数方法。 msdn2.microsoft.com 10. Represents the name of the class constructor method as it is stored in metadata. 表示存储在元数据中的类构造函数方法的名称。 msdn2.microsoft.com 1. Represents the name of the class constructor method as it is stored in metadata. 表示存储在元数据中的类构造函数方法的名称。 msdn2.microsoft.com 2. Only the constructor may have to cope with a partially initialized memory area. 只有构造器可能不得不去处理部分的内存区初始化工作。 wiki.chinaunix.net 3. The name of a local variable in a method or a constructor can be set using the. 方法可以设置方法或构造函数中的局部变量的名称。 msdn2.microsoft.com 4. The constructor constraint ensures that the generic type has the ability to create objects of that type. 此构造函数约束确保泛型类型能够创建该类型的对象。 msdn2.microsoft.com 5. Value indicating that this member is a constructor. 值,该值指示此成员是构造函数。 msdn2.microsoft.com 6. The CLR allocates memory for the new object and calls a special method known as a constructor for the SqlConnection class. CLR为新对象分配内存,并为SqlConnection类调用一个称为构造函数的特殊方法。 msdn2.microsoft.com 7. Use constructor-arg elements to specify arguments to the factory method, if it takes arguments. 若这个工厂方法需要参数的话,使用constructor-arg元素来指定它的参数。 blog.sina.com.cn 8. Represents the name of the type constructor method as it is stored in metadata. 表示存储于元数据中的类型构造函数方法的名称。 msdn2.microsoft.com 9. The constructor methods for both versions are virtually identical, except for the format of values being stored, as shown in Listing 3. 两个版本的构造方法实际上都是相类似的,除了存储值的格式之外,如清单3所示。 www.ibm.com 10. This class does not provide a public constructor, and therefore cannot be inherited. 此类不提供公共构造函数,因为不能被继承。 msdn2.microsoft.com 1. The constructor function has the same name as the structured type with which it is associated. 构造函数和它关联的结构化类型有相同的名称。 www.ibm.com 2. Also enable the Named Return Value optimization , which eliminates the copy constructor and destructor of a stack based return value . 也支持命名返回值优化,它消除了基于堆栈的返回值的复制构造函数和析构函数。 www.bing.com 3. If a class has a constructor, each object of that type is initialized with the constructor prior to use in a program. 如果类有一个构造器,那么这个类的每个对象都应该在程序使用前先初始化构造函数。 blog.chinaunix.net 4. To fix a violation of this rule, either make the constructor protected or do not declare the type as abstract. 若要修正此规则的违规情形,请使建构函式受到保护,或者勿将型别宣告为抽象。 technet.microsoft.com 5. Methods are used to obtain instances of this class, rather than creating an instance using this constructor. 方法用于获取此类的实例,而不是使用此构造函数来创建实例。 msdn2.microsoft.com 6. The permission created by this constructor can be used to give full access or prevent all access to SMTP servers. 由此构造函数创建的权限可用于赋予对SMTP服务器的完全访问或禁止所有访问。 msdn2.microsoft.com 7. Also notice that the type checker can't even check that every instantiation of a mixin will result in valid super-constructor calls. 而且请注意,类型检查器甚至不能检查是否每个mixin实例化都会产生有效的超级构造函数调用。 www.ibm.com 8. Returns an array of Constructor objects reflecting all the constructors declared by the class represented by this Class object. 返回一Constructor对象数组,映射该Class对象表示的类中的所有声明的构造函数。 www.mscto.com 9. An instance of a Zend_Rest_Client object is created and initialized with the Wikipedia API service endpoint as constructor argument. 创建了Zend_Rest_Client对象的一个实例,在初始化操作中确定WikipediaAPI服务端点作为构造函数参数。 www.ibm.com 10. Or by using a Standard MBean instance, which takes a class as a constructor argument, along with an optional interface class specification. 结束的接口,也可以使用一个以一个类作为构造函数参数的StandardMBean实例,加上一个可选的接口类规范。 www-128.ibm.com 1. All of the code that the Worker will execute must be contained in the Worker script whose URL is passed in to the constructor of the Worker. Worker将执行的所有代码都必须包含在一个Worker脚本中,该脚本的URL将被传递到这个Worker的构造函数中。 www.ibm.com 2. This constructor is called by derived class constructors to initialize state in this type. 派生类构造函数调用此构造函数初始化该类型中的状态。 msdn2.microsoft.com 3. However, it won't be enough to provide a visualization of the assets to the cloud constructor. 但是,仅向云构建者提供资产虚拟化还不够。 www.ibm.com 4. Illustrates how to use inheritance to add a common set of properties and methods to objects created with a given constructor function. 阐释如何使用继承将一组通用属性和方法添加到用给定构造函数创建的对象。 technet.microsoft.com 5. Og also enables the Named Return Value optimization, which eliminates the copy constructor and destructor of a stack based return value. Og还会启用命名的返回值优化,此优化可消除基于堆栈的返回值的复制构造函数和析构函数。 msdn2.microsoft.com 6. Thus, if only an index or only a location is provided, the constructor assumes that the intent is to get the other value filled in. 所以,如果只提供了索引或位置,那么构造函数会认为意图是填充其他值。 www-128.ibm.com 7. When an array is in a constructor's member initialization list, the elements of the array will be default initialized. 当阵列在建构函式的成员初始设定清单中时,阵列元素将预设为初始化。 msdn.microsoft.com 8. Each value type has an implicit default constructor that initializes the default value of that type. 每种值类型均有一个隐式的默认构造函数来初始化该类型的默认值。 msdn.microsoft.com 9. This read-only property retrieves the name of the type description provider set in the constructor. 此只读属性在构造函数中检索类型说明提供程序集的名称。 msdn2.microsoft.com 10. In this example, the constructor for the base class is called before the block for the constructor is executed. 在此示例中,基类的构造函数在执行构造函数块之前被调用。 msdn2.microsoft.com 1. A constructor that does not initialize a member of built-in or compound type leaves that member in an undefined state. 没有初始化内置或复合类型成员的构造函数,将使那些成员处于未定义的状态。 dictsearch.appspot.com 2. Writes that initialize final fields will not be reordered with operations following the freeze associated with the constructor. 初始化final字段的写将不会与构造函数关联的冻结后面的操作一起重新排序。 www.ibm.com 3. It is invalid to initialize a reference member of a class in the class's constructor with a temporary variable. 在类的构造函数中使用临时变量初始化类的引用成员是无效的。 msdn2.microsoft.com 4. This enables you to create complete menu structures and assign them to the constructor for the menu item. 这使您得以创建完整的菜单结构并将它们分配给菜单项的构造函数。 msdn2.microsoft.com 5. This is an array of objects with the same number, order, and type as the parameters of the method or constructor to be invoked. 这是一个对象数组,这些对象与要调用的方法或构造函数的参数具有相同的数量、顺序和类型。 msdn2.microsoft.com 6. Another behavior unique to type constructors is how the runtime manages exceptions in a type constructor. 类型构造函数的另一个独特行为是运行库管理类型构造函数中的异常的方式。 www.cnblogs.com 7. However, you're not expected to call the constructor directly. 但是,您不需要直接调用构造函数。 www.ibm.com 8. The network address of your LDAP directory and your root directory node as a constructor parameter. 将您的LDAP目录和根目录节点的网络地址指定为构造函数的参数。 www.ibm.com 9. OK, you've seen how constructor functions and prototype objects allow you to simulate classes in JavaScript. 到这里,我们已经了解了构造函数和原型对象如何使您在JavaScript中模拟类。 msdn.microsoft.com 10. The other way to say it is, never define a global (static global) instance of a class whose constructor or destructor may throw exceptions. 换一种说法就是永远都不要为那些其构造函数和析构函数可能抛出异常的类定义全局(静态全局)实例。 www.ibm.com 1. For a partially specified strong name, create an AssemblyName object using the default constructor and set the name and public key. 对于部分指定的强名称,使用默认构造函数创建AssemblyName对象并设置名称和公钥。 msdn2.microsoft.com 2. You also write the least code by delegating responsibilities to a common constructor. 通过将职责委托给公用的构造函数,你编写的代码也最少。 www.diybl.com 3. The above constructor takes in the values of these namespaces and saves them within the class. 上面的构造函数接收这些名称空间的值并将其保存在类中。 www.ibm.com 4. To deal with this, you can generate a stack trace in the constructor of the exception object during the throw exception statement. 为了解决这一问题,可以在抛出异常语句期间,在异常对象的构造函数中生成一个堆栈跟踪。 www-128.ibm.com 5. To use them, you create a session object and pass it to the constructor or initializer for a binary XML reader or writer. 要使用动态字典,请创建会话对象并将其传递到二进制XML读取器或编写器的构造函数或初始值设定项。 technet.microsoft.com 6. If you don't define a constructor in a child class, the parent constructor is transparently invoked on your behalf. 如果在子类中不定义构造函数,则parent构造函数代表您被显式调用。 www.ibm.com 7. Containing the name of the constructor, method, property, or field member to invoke. 它包含要调用的构造函数、方法、属性或字段成员的名称。 msdn2.microsoft.com 8. True, the stream passed to the constructor of this class will not be closed after the instance of this class is closed. 时,关闭此类的实例后,传递到此类的构造函数的流将不会关闭。 msdn2.microsoft.com 9. Programmers can also use the term constructor to denote one of the tags that wraps data in an algebraic data type. 程序员也可以使用这个词的构造函数来表示的标签,包装在一个代数数据类型的数据之一。 wenwen.soso.com 10. The primary constructor takes a label argument and a list of callbacks that are invoked when the button's click method is invoked. 主构造函数接受一个label(标签)参数和一个callbacks(回调)的list(列表),这些回调函数会在按钮的click方法被调用时被调用。 www.bing.com 1. Property is set in the constructor and cannot be modified during execution of the asynchronous task. 属性在构造函数中设置,不能在异步任务的执行过程中修改。 msdn2.microsoft.com 2. Do not provide a default constructor for a structure. 不要为结构提供默认的构造函数。 msdn2.microsoft.com 3. Field as a parameter argument to a second version of the constructor. 字段作为参数传递到它的第二个版本。 msdn2.microsoft.com 4. In that case, doing the getService invocation once in a constructor and storing the result as a member variable would be smart. 如果出现这种情况,那么聪明的做法是只在构造函数中调用一次getService,然后将结果储存为成员变量。 www.infoq.com 5. To instantiate a Dictionary object, you need to pass a type string and a DictionaryIO object to its constructor. 要实例化Dictionary对象,需要将类型字符串和DictionaryIO对象传递给它的构造函数。 www.ibm.com 6. The following code example illustrates the use of this constructor to instantiate a regular expression with a specified pattern and options. 下面的代码示例演示如何使用此构造函数以指定的模式和选项实例化正则表达式。 msdn2.microsoft.com 7. The API for most uses is simple: you supply the code to be benchmarked to a Benchmark constructor. API的基本用法很简单:把要进行基准测试的代码提供给一个Benchmark构造函数。 www.ibm.com 8. In the example below you can see how two asynchronous calls (presumably to a database) are in-lined with the constructor of the view-model. 在下面的例子中,你可以看到两个异步调用(可能是到一个数据库的调用)是如何嵌入视图模型的构造函数里的。 www.infoq.com 9. They used the technology of Damascus steel while producing barrels in participation of a talented constructor Mosin. 他们在生产枪筒的时候使用了大马士革钢技术,而这种创意出自于天才的设计师莫辛甘。 www.bing.com 10. The data should be cloned before calling this constructor if the caller does not trust the source of the data to not modify the data. 数据。如果调用方不确信数据源不会修改数据,则应该在调用此构造函数之前克隆数据。 msdn2.microsoft.com 1. The BasicAttribute constructor takes the name of the attribute as a parameter. BasicAttribute构造函数采用属性名称作为参数。 www.ibm.com 2. The return value of this constructor is a node that you can add to the tree in the same way as the nodes in the above example. 该构造函数的返回值是一个节点,可以使用与上面示例中相同的方式将其添加到树中。 www.ibm.com 3. A default constructor is always provided to initialize the struct members to their default values. 总是提供默认构造函数以将结构成员初始化为它们的默认值。 msdn2.microsoft.com 4. The new class sets up a Form object in the constructor and adds a field to it for input. 这个新类在构造方法中创建一个Form对象,在其中添加一个用于输入的字段。 www.ibm.com 5. The constructor is used to form a delegate over a target object and a function pointer. 这构造器用来通过一个目标对象和一个函数指针形成一个委托。 www.cnblogs.com 6. The control must have at least one public constructor. 控件必须至少有一个公共构造函数。 msdn2.microsoft.com 7. Constructor ensures that the integer being verified adheres to both a minimum and a maximum length. 构造函数可以确保正在接受验证的整数符合最小长度要求和最大长度要求。 msdn2.microsoft.com 8. This includes publishing references to nonstatic inner classes, and generally precludes starting threads from within a constructor. 这包括发布对nonstatic内部类的引用,并一般要避免在构造函数中启动线程。 www-128.ibm.com 9. If the sub-select returns an empty table, the result of the constructor is the empty array. 如果子选择返回空表,则构造函数的结果就是空阵列。 www.ibm.com 10. The second auxiliary constructor accepts just a label. 第二个辅助构造函数只接受一个标签。 www.bing.com 1. This constructor allows you to initialize, resolve the DNS host name, and connect in one convenient step. 利用此构造函数,只需一步即可方便地初始化、解析DNS主机名并建立连接。 msdn2.microsoft.com 2. In Figure 3, you can see that the Dog. Prototype object has a constructor property that points back to the Dog function. 在图3中,可以看到Dog.prototype对象有一个回指Dog函数的构造函数属性。 msdn.microsoft.com 3. Creating a static class is therefore much the same as creating a class that contains only static members and a private constructor. 因此创建静态类与创建仅包含静态成员和私有构造函数的类大致一样。 msdn2.microsoft.com 4. Gets a value indicating whether the potential visibility of this method or constructor is described by. 获取一个值,该值指示此方法是否可以由同一程序集中的派生类调用。 msdn2.microsoft.com 5. The default list constructor takes no arguments, creates a new instance of that list. 默认的链表构造函数没有什么需要讨论,用来创建一个新的事例链表。 blog.163.com 6. A class does so by defining a special constructor, known as the default constructor. 它是通过定义一个特殊的构造函数即默认构造函数来实现的。 blog.163.com 7. You cannot replace the constructor initialization of the component, but you can augment it or reset the properties that it initializes. 您不能替换组件的构造函数初始化,但可以增加它或重置它初始化的属性。 msdn2.microsoft.com 8. Provides initialization for base class values when called by the constructor of a derived class. 在由派生类的构造函数调用时,提供基类值的初始化。 technet.microsoft.com 9. This instantiation involves the default constructor for the class being called, with the injection of dependencies happening afterwards. 这种实例化涉及到要调用的类的默认构造函数,随后还要注入依赖关系。 www.ibm.com 10. The primary constructor for RadioButtonWithCallbacks takes three parameters: an on state (true or false), a label, and a list of callbacks. RadioButtonWithCallbacks的主构造函数接受3个参数,一个开关状态(真或假),一个标签,以及一个回调函数例表。 www.bing.com 1. Eventually she will figure it out: Her code is missing the default constructor for the applet she is writing. 最后他将发现,他写的小应用程序代码缺少缺省的构造函数。 www-128.ibm.com 2. This constructor sets the properties of the Exception object as shown in the following table. 该构造函数按下表所示设置Exception对象的属性。 msdn2.microsoft.com 3. You might be wondering what happens if you omit the parentheses from the constructor call. 您可能想知道如果省略了构造函数调用中的圆括号将会发生什么。 www.ibm.com 4. The constructor method begins by verifying that the data is in a form suitable for processing. 构造函数方法从验证数据形式是否适合于处理开始。 www-128.ibm.com 5. He is a historian, constructor, woodcarver, jeweler and the only master making miniature copies of shotguns and cold weapon. 他是一位历史学家、构造工程师、木雕大家和钟表匠,他是惟一一位可以称之为制造微型散弹枪和冷兵器的模型大师。 www.bing.com 6. To ensure that you have only one object created for each community, you should not allow people to call the constructor object directly. 要确保为每个社区只创建一个对象,不应该允许人们直接调用构造器。 www.ibm.com 7. Calling this constructor with the correct password decrypts the private key and saves it to a key container. 使用正确的密码调用此构造函数可解密私钥,并将其保存到密钥容器。 msdn2.microsoft.com 8. A MethodAttributes object representing the attributes to be applied to the constructor. MethodAttributes对象,表示应用于构造函数的属性。 msdn2.microsoft.com 9. The scientific rationality and importance of the concept of "constructor" “建设者”概念的科学合理性及其意义 ilib.cn 10. Next, you see an example of constructor injection and how Geronimo's deployment plans define how the container injects code. 接下来,将看到构造函数注入的示例,以及Geronimo的部署计划定义容器注入代码的方式。 www.ibm.com 1. Constructor , Construction Project Manager Certificate , experienced in management of EPC general contractor project. 一级建造师,建设部项目经理证,具有EPC总承包项目管理经验; www.bing.com 2. If the specified array is not null-terminated, the behavior of this constructor is system dependent. 如果指定的数组并非空终止,此构造函数的行为将取决于系统。 msdn2.microsoft.com 3. This example requires that the method defined in the example is defined and called from the constructor of a Form. 本示例要求示例中定义的方法已定义并且是从Form的构造函数中调用的。 msdn2.microsoft.com 4. Because auxiliary constructors invoke the primary constructor, potential duplication of construction logic is largely eliminated. 因为辅助构造函数会调用主构造函数,潜在的重复构造逻辑就被大大地消除了。 www.bing.com 5. This example creates a complex class out of other classes, and each class has a constructor that announces itself. 这个例子使用其它的类创建了一个组合的类,并且每个类都有构造方法来描述自己。 www.xue5.com 6. If you want to use the default masking language and supply your own input mask, you do not need to use this constructor. 如果您希望使用默认掩码语言并提供自己的输入掩码,则不需要使用此构造函数。 msdn2.microsoft.com 7. To be precise: the namespaces of the node passed into the method examineNode by the constructor. 更准确的说法是:此节点的名称空间被构造函数传递给了方法examineNode。 www.ibm.com 8. Constructor is called automatically when an object based on this class is created. 当创建基于此类的对象时,会自动调用。 msdn2.microsoft.com 9. CONSTRUCTOR AND DESTRUCTOR Let's discuss the implementation of the thumbnail class, starting with the constructor and destructor. 让我们从构造函数和析构函数开始来讨论略缩图类的实现。 spaces.msn.com 10. Configuration of the logger passed to the constructor is beyond the scope of this article. 配置传递给构造函数的记录器的内容不属于本文讨论范围。 www.ibm.com 1. In effect, the compiler implements the default constructor by assigning all the fields of their default values (see Default Values Table). 实际上,编译器通过为所有字段赋予默认值(参见默认值表)来实现默认构造函数。 msdn2.microsoft.com 2. Throw an exception whenever a run-time instantiation of the generic class does not include a needed constructor. 只要泛型类的运行时实例化没有包括所需的构造函数,就抛出异常。 www.ibm.com 3. Is not a token for a method or constructor in the scope of the current module. 不是当前模块范围内的方法或构造函数的标记。 msdn2.microsoft.com 4. Just like static detection of bad generic constructor calls, forbidding polymorphic recursion conflicts with incremental class compilation. 就象静态检测糟糕的泛型构造函数调用一样,禁止多态递归会与递增式类编译发生冲突。 www.ibm.com 5. A reference to any shared member will also cause the shared constructor to execute. 对任何共享成员的引用都将导致执行共享构造函数。 msdn2.microsoft.com 6. A static constructor, also known as a class constructor, is used to initialize a type. 静态构造函数(也称为类构造函数)用于初始化类型。 technet.microsoft.com 7. Private Enterprise Owners Are "the Constructor of Socialist Course with Distinctive Chinese Character" 试析私营企业主是“有中国特色社会主义事业的建设者” www.ilib.cn 8. Now the constructor takes four additional parameters, which are the starting and ending points of the viewport. 现在这个构造函数可以利用另外4个参数了,它们分别是viewport的起点和终点。 www.ibm.com 9. Searches for a constructor whose parameters match the specified argument types and modifiers, using the specified binding constraints. 使用指定绑定约束搜索其参数与指定参数类型和修饰符匹配的构造函数。 msdn2.microsoft.com 10. This is done in the object's constructor, just as you've done in the previous example in Listing 2. 这在对象的构造函数中完成,和之前清单2中的例子一样。 www.ibm.com 1. A class that defines and represents a constructor, which describes an operation that creates an instance of a type. 定义并表示构造函数的类,它描述了创建类型实例的操作。 msdn2.microsoft.com 2. Every component in SWT must has at least a single parameter constructor. 每个组件都必须至少拥有一个单参数的构造器。 www.blogjava.net 3. He passed PMP certification, the Investment Manager certification for Construction Project and Constructor certification. 冯永明先生还拥有PMP认证、投资建设项目管理师、一级建造师职业资格。 blog.sina.com.cn 4. You can just use a constructor for the appropriate class directly, without going through a factory class. 可以仅仅直接使用相应类的构造函数,而不用通过工厂类。 www.ibm.com 5. explicit on a constructor with multiple arguments has no effect, since such constructors cannot take part in implicit conversions. Explicit关键字在多参构造函数的情况下失效,因为多数构造函数不能被隐式转换。 blog.csdn.net 6. In Listing 3, the name and content type of the input document is specified by the constructor. 在清单3中,输入文档的名称和内容类型由构造函数指定。 www.ibm.com 7. The total points gained by both cars together are counted for the constructor. 赛车制造商的分数是两辆赛车加起来的总分数。 www.ebigear.com 8. In the transformation configuration for this model as a source, enable the Constructor option in the Properties tab. 在这个模型中转换配置就像一个源,可以激活Properties页签中的Constructor选项。 www.ibm.com 9. This method is called immediately after the constructor. 在构造函数之后立即调用此方法。 msdn2.microsoft.com 10. Represents a declaration for an instance constructor of a type. 表示一个类型的实例构造函数的声明。 msdn2.microsoft.com 1. Constructor functions which must be used with the new prefix should start with a capital letter. 必须与new共同使用的构造函数名应以大写字母开头。 www.bing.com 2. The parameter Types parameter is an array of Class objects that identify the constructor's formal parameter types, in declared order. parameterTypes变量是Class对象的数组,以声明顺序表示构造函数的变量类型。 www.mscto.com 3. For starters, Prototype's Request object takes two parameters to its constructor. 首先,Prototype的Request对象为其构造函数获取两个参数。 www.ibm.com 4. Returns a runtime method handle for a method or constructor identified by a metadata token. 返回由元数据标记标识的方法或构造函数的运行时方法句柄。 msdn2.microsoft.com 5. An implicitly-declared default constructor is an inline public member of its class. 一个隐式声明的构造函数是这个类的一个内联公有成员。 bbs.bccn.net 6. This change will prevent unexpected behavior due to incorrect arguments being passed to an attribute constructor. 此更改有助于防止由于向属性构造函数传递了错误的参数而产生意外的行为。 msdn2.microsoft.com 7. If this property is not set, the collection will typically use the default constructor of the appropriate type to construct a new item. 如果未设置此属性,集合通常会使用适当类型的默认构造函数来构造一个新项。 msdn2.microsoft.com 8. Fortunately, the anonymous function definitions are within the lexical scope of the htmlElement argument of the object constructor. 幸运的是,匿名函数定义位于对象构造方法的htmlElement参数的词法范围内。 www.ibm.com 9. A return type should not be set for a UML operation representing either a constructor or a destructor. 不应该为表示构造方法或析构方法的UML操作设置返回类型。 www.ibm.com 10. Constructor creates a simple designer loader that creates a component of the given type and then ends the loading process. 构造函数会创建一个简单的设计器加载程序,这个加载程序又会创建一个给定类型的组件,随后结束加载过程。 msdn2.microsoft.com 1. Members cannot be overloaded, except for the class constructor. 成员不能被重载,但类构造函数除外。 msdn2.microsoft.com 2. Note that if you do not use an access modifier with the constructor it will still be private by default. 注意,如果您不对构造函数使用访问修饰符,则在默认情况下它仍为私有构造函数。 msdn.microsoft.com 3. The final pricing of a project by the constructor or contractor usually takes a different form. 承包商通常回用不同的方式做出工程项目的最终报价。 dfcorner.com 4. According to the CDI specification, having a no-arg default constructor makes this class eligible to be a managed bean. 根据CDI规范,有一个no-arg默认构造函数使得这个类能成为托管bean。 www.ibm.com 5. The first parameter in the constructor is the ID of the HTML table that will be converted into a LiveGrid. 构造函数中的第一个参数是被转换成LiveGrid的HTML表的ID。 www.ibm.com 6. student as an initiative learner and a constructor and the teacher-student relationship is characterized by "I-You" . 学生是主动的学习者和建构者;师生关系表现为对话实质的“我—你”关系。 lib.nwnu.edu.cn 7. That's valid syntax, although a little verbose. It be nice to make this a bit more concise and use row value constructor syntax. 上面是一个有效的语法,虽然有一点儿冗长。下面的语句很好,简洁的多,并且使用了行值构造语法。 space.itpub.net 8. The value of these parameters mirrors the value passed to the constructor call that created the device. 这些参数的值将镜像传递到创建了设备的构造函数调用的值。 msdn2.microsoft.com 9. Unity is a lightweight, extensible dependency injection container with support for constructor, property, and method call injection. Unity是一个轻量级,可扩展的依赖注入容器,支持构造函数,属性和方法调用注入。 www.infoq.com 10. Non-shared events should not be raised within the constructor of the class in which they are declared. 非共享事件不应该在声明它们的类的构造函数内引发。 msdn2.microsoft.com |
随便看 |
英汉双解词典包含2704715条英汉词条,基本涵盖了全部常用单词的翻译及用法,是英语学习的有利工具。