单词 | destructor |
释义 |
复数:destructors 例句释义: 〈英〉垃圾焚化炉,破坏器,爆破装置,析构函数,解构式,析构器 1. The root class of an inheritance hierarchy should define a virtual destructor even if the destructor has no work to do. 继承层次关系的根类应该定义虚函数性质的析构函数,即使这个析构函数不做任何的事情。 www.blogjava.net 2. The programmer has no control over when the destructor is called because this is determined by the garbage collector . 程序员无法控制何时调用析构函数,因为这是由垃圾回收器决定的。 www.bing.com 3. If it considers an object eligible for destruction, it calls the destructor (if any) and reclaims the memory used to store the object. 如果垃圾回收器认为某个对象符合析构,则调用析构函数(如果有)并回收用来存储此对象的内存。 msdn2.microsoft.com 4. When the lock object goes out of scope and is destroyed, the object's destructor calls Unlock for you, releasing the resource. 当锁定对象超出范围并被销毁时,该对象的析构函数调用Unlock以释放资源。 msdn2.microsoft.com 5. The destructor is called just before your component is destroyed by garbage collection and its memory is reclaimed. 在垃圾回收销毁组件并回收其内存之前调用析构函数。 msdn2.microsoft.com 6. Similarly, a subclass destructor must call its superclass destructor after it has completed its own resource reclamation. 类似地,子类析构函数在它完成其资源释放之后,也要调用基类的析构函数。 wiki.chinaunix.net 7. 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 8. object to release resources and perform other cleanup operations before its destructor is called. 物件在呼叫其解构函式之前,释放资源并执行其他清除作业。 technet.microsoft.com 9. A destructor is named in a similar manner, except that it has a ~ (tilde) followed by the parent's name. 析构方法按类似的方式命名,除了它的母体名前有一个~(否定号)。 www.ibm.com 10. A. A matrix class in which the actual matrix is allocated dynamically within the constructor and is deleted within its destructor. 动态分配,对象的建立是利用构造函数,删除是利用析构函数。 zhidao.baidu.com 1. A brutal Pit Lord and servant of Mannoroth the Destructor, Magtheridon found his way to Draenor after its cataclysm. 玛瑟里顿是破坏者玛诺罗斯的仆人--一个残忍的深渊领主,玛瑟里顿在灾难之后发现了德拉诺。 www.topgame.com.cn 2. ConclusionThe CT is the diagnosis fungi the importance means of nasosinusitis, particularly erupt bone substance destructor of diagnosis. 结论CT是诊断真菌性鼻窦炎的重要手段,尤其是并发骨质破坏者的诊断。 www3.chkd.cnki.net 3. To release resources and perform other clean-up operations before its destructor is called. 在调用其析构函数之前释放资源并执行其他清理操作。 msdn2.microsoft.com 4. Also enable the Named Return Value optimization , which eliminates the copy constructor and destructor of a stack based return value . 也支持命名返回值优化,它消除了基于堆栈的返回值的复制构造函数和析构函数。 www.bing.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. To see what happens when a Cardgame object is destroyed, view the destructor for the Cardgame class. 若要明白在Cardgame对象销毁时会发生什么,请查看Cardgame类的析构函数。 msdn2.microsoft.com 7. 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 8. Local handles are held on a stack and are deleted when the appropriate destructor is called. 本地句柄。本地句柄在栈上,并且当指定的析构函数被调用时删除。 blog.sina.com.cn 9. When the handle scope's destructor is called all handles created within that scope are removed from the stack. 当句柄范围的析构函数被调用时,所有在那个范围中创建的句柄都将被从栈中移除。 blog.sina.com.cn 10. First, the destructor of the object that's being deleted is called. 首先,调用将要被删除的对象的析构函数。 www.bing.com 1. This destructor would have to be called specifically before unsetting the parent class reference. 这种解构器必须在解除父类引用之前进行调用。 www.ibm.com 2. CONSTRUCTOR AND DESTRUCTOR Let's discuss the implementation of the thumbnail class, starting with the constructor and destructor. 让我们从构造函数和析构函数开始来讨论略缩图类的实现。 spaces.msn.com 3. A return type should not be set for a UML operation representing either a constructor or a destructor. 不应该为表示构造方法或析构方法的UML操作设置返回类型。 www.ibm.com 4. This destructor is what our Managed Extensions user programs invoke either directly or through an application of the delete expression. 托管扩展用户程序将直接调用此析构函数,或通过应用delete表达式进行调用。 msdn2.microsoft.com 5. If the BIO is embedded in a class, this would be used in the class' destructor. 如果将BIO嵌入于一个类中,那么应该在类的析构函数中使用这个调用。 www.ibm.com 6. You tried to modify a method, property, indexer, operator, constructor, destructor, or event containing a stackalloc operator. 您试图修改包含stackalloc运算符的方法、属性、索引器、运算符、构造函数、析构函数或事件。 msdn2.microsoft.com 7. Destructors for local objects are run; resources allocated by class-type objects ordinarily are freed by their destructor. 运行局部对象的析构函数,由类类型对象分配的资源通常由它们的析构函数释放。 dictsearch.appspot.com 8. This section discusses modeling the constructor, destructor, and copy constructor for a C class. 这个部分讨论了为一个C 类建模构造函数,分析构造函数,以及拷贝构造函数。 www.ibm.com 9. Hook's destructor checks if the hook is in the well-known default state. If not, an assertion is raised. 钩子的析构函数检查钩子是否处于缺省状态。如否,则引发断言。 boost-doc-zh.googlecode.com 10. If an exception occurs, the destructor cannot be called. 如果发生了例外状况,解构函式无法被呼叫。 msdn.microsoft.com 1. In Listing 24, the constructor of F is called before F2; likewise for the destructor. 在清单24中,先调用F的构造函数,然后是F2的;对于销毁函数也是这样。 www.ibm.com 2. Secondly, within the class destructor, we release the resource acquired when the object was created. 其次,在类析构函数内,释放创建对象时获得的资源。 msdn2.microsoft.com 3. When the destructor is called, the garbage collector is invoked to process the queue. 调用析构函数时,将调用垃圾回收器来处理该队列。 technet.microsoft.com 4. Object. By implementing a destructor you can perform cleanup just before your component is removed from memory. 通过实现析构函数,可以在将组件从内存移除前执行清除操作。 msdn2.microsoft.com 5. Is the object destructor, but it should not be used unless you really, really need it. 是对象析构器,但是除非您确实非常非常需要,否则不应该使用它。 www-128.ibm.com 6. The resource-managing class should be designed so that the constructor acquires the resource and the destructor frees it. 应该设计资源管理类,以便构造函数分配资源而析构函数释放资源。 dictsearch.appspot.com 7. Specifies whether the class destructor is virtual. 指定类析构函数是否是虚的。 msdn2.microsoft.com 8. However, in the sand and glycerol, all populations of Ditylenchus destructor could not survive at low temperature. 试验发现在细沙和不同甘油浓度条件下,所有线虫群体在低温处理下均未查到活虫。 www.boshuo.net 9. A client block is a special type of memory block used by MFC programs for objects that require a destructor. “客户端块”是由MFC程序用于需要析构函数的对象的特殊类型内存块。 technet.microsoft.com 10. When a class contains a destructor, an entry is created in the Finalize queue. 如果类包含析构函数,Finalize队列中则会创建一个项。 msdn2.microsoft.com 1. Use destructor syntax to specify instructions to execute when your object is destroyed. 使用析构函数语法指定销毁对象时执行的指令。 msdn2.microsoft.com 2. Destructor is a protected method that can be called only from the class it belongs to, or from derived classes. 析构函数是只能从其所属类或派生类调用的受保护方法。 msdn2.microsoft.com 3. A destructor does not take modifiers or have parameters. 析构函数既没有修饰符,也没有参数。 technet.microsoft.com 4. The destructor implicitly calls Finalize on the base class of the object. 该析构函数隐式地对对象的基类调用Finalize。 msdn2.microsoft.com 5. The constructor and destructor methods of this object do the necessary setup and cleanup. 这个对象的constructor和destructor方法执行必需的设置和清除工作。 www.ibm.com 6. Destructor may not immediately execute when an object loses scope. 析构函数可能不会在对象失去范围时立即执行即可。 msdn2.microsoft.com 7. Allows defining a destructor function that runs when an object is destroyed. 允许定义一个析构函数当对象崩溃的时候运行。 bbs.colife.cn 8. Method is present, rewrite that into the class destructor. 方法,则将其重写到类析构函数中。 msdn2.microsoft.com 9. Method, retain the destructor while carrying out the first item. 方法,则在执行第一项时保留析构函数。 msdn2.microsoft.com 10. To resolve, remove the function call that causes the destructor to not return. 若要解决此问题,请移除导致析构函数不能返回的函数调用。 msdn2.microsoft.com 1. If a destructor is present, rewrite that to be the class finalizer. 如果存在析构函数,则将其重写为类终结器。 technet.microsoft.com 2. Although a destructor is a method, it cannot have parameters. 析构函数虽然是一种方法,但它不能有参数。 msdn2.microsoft.com 3. Deletion of the pointer in the destructor. 在析构函数中删除指针。 blog.csdn.net 4. If the destructor is empty, this simply results in a needless loss of performance. 如果析构函数为空,则只会导致不必要的性能丢失。 msdn2.microsoft.com 5. If the destructor is empty, this simply results in a loss of performance. 如果析构函数为空,只会导致性能降低。 msdn2.microsoft.com 6. A struct cannot contain a destructor. struct不能包含析构函数。 msdn2.microsoft.com 7. It is unclear what should happen if a destructor itself throws a new exception during this process. 如果在这个过程中析构函数本身抛出新的异常,又会发生什么呢? dictsearch.appspot.com 8. Java code automatically manages memory, whereas C doesn't, so the Java language doesn't require destructor methods. Java代码自动管理内存,但是C 却不是如此,因此Java语言不需要解除器方法。 www.ibm.com 9. If the destructor is empty, this just causes a needless loss of performance. 如果析构函数为空,只会导致不必要的性能损失。 msdn2.microsoft.com 10. Sargeras' lieutenants, Archimonde the Defiler and Mannoroth the Destructor, prepared their infernal minions to strike. 萨格拉斯的副官——污染者阿克蒙德和毁灭者玛诺洛斯——已经准备好要率领他们的爪牙发起进攻了。 hi.baidu.com 1. The effects of brood comb cell size on the reproductive behavior of the ectoparasitic mite Varroa destructor on honey bees 蜜蜂巢房大小影响狄斯瓦螨的繁殖行为 service.ilib.cn 2. Sampling method of Ditylenchus destructor specimens for scanning electron microscopy 甘薯茎线虫的扫描电镜制样方法 www.ilib.cn 3. Modeling constructor, destructor, and copy constructor 建模构造函数、分析构造函数,以及拷贝构造函数 www.ibm.com 4. Called from a cancellation cleanup handler or destructor function 被取消清理处理或析构函数所唤起 bbs.chinaunix.net 5. Destructor for class required in conditional expression 条件表达式需要析构函数类 course.cugnc.com 6. Research on the Combustion Stability Control in Destructor 垃圾焚烧稳定性控制研究 service.ilib.cn 7. A fuzzy control system for stabilizing combustion of destructor 垃圾焚烧炉稳定燃烧的模糊控制系统研究 ilib.cn 8. Close method on a file object instead of closing the file in the class destructor or with 方法,而不是在类析构函数中关闭该文件或者使用 msdn2.microsoft.com 9. When either a destructor is invoked explicitly under the new syntax, or when 在新语法下显式调用析构函数时,或者将 msdn2.microsoft.com 10. Use of essential oils for controlling Varroa destructor in honey bee colonies 香精油的抗蜂螨作用及其在蜂群中的应用 www.ilib.cn 1. Layered Fuzzy Control System of Destructor 垃圾焚烧炉的分层模糊控制系统 www.ilib.cn 2. Name of destructor must match name of class 析构函数的名称必须与类的名称匹配 msdn2.microsoft.com 3. Destructor cannot have a return type specification 析构函数不能有返回类型说明 course.cugnc.com 4. For example, the following is a declaration of a destructor for the class Car 例如,下面是类Car的析构函数的声明 msdn2.microsoft.com |
随便看 |
|
英汉双解词典包含2704715条英汉词条,基本涵盖了全部常用单词的翻译及用法,是英语学习的有利工具。