GC.ReRegisterForFinalize(Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
请求系统调用指定对象的终结器,此前已为该对象调用 SuppressFinalize(Object)。
public:
static void ReRegisterForFinalize(System::Object ^ obj);
public static void ReRegisterForFinalize (object obj);
static member ReRegisterForFinalize : obj -> unit
Public Shared Sub ReRegisterForFinalize (obj As Object)
参数
- obj
- Object
必须为其调用终结器的对象。
例外
obj
为 null
。
示例
以下示例演示如何使用 ReRegisterForFinalize 方法在垃圾回收后第二次完成对象。
using namespace System;
ref class MyFinalizeObject
{
public:
static MyFinalizeObject^ currentInstance = nullptr;
private:
bool hasFinalized;
public:
MyFinalizeObject()
{
hasFinalized = false;
}
~MyFinalizeObject()
{
if ( hasFinalized == false )
{
Console::WriteLine( "First finalization" );
// Put this object back into a root by creating
// a reference to it.
MyFinalizeObject::currentInstance = this;
// Indicate that this instance has finalized once.
hasFinalized = true;
// Place a reference to this object back in the
// finalization queue.
GC::ReRegisterForFinalize( this );
}
else
{
Console::WriteLine( "Second finalization" );
}
}
};
int main()
{
// Create a MyFinalizeObject.
MyFinalizeObject^ mfo = gcnew MyFinalizeObject;
// Release the reference to mfo.
mfo = nullptr;
// Force a garbage collection.
GC::Collect();
// At this point mfo will have gone through the first Finalize.
// There should now be a reference to mfo in the static
// MyFinalizeObject::currentInstance field. Setting this value
// to 0 and forcing another garbage collection will now
// cause the object to Finalize permanently.
MyFinalizeObject::currentInstance = nullptr;
GC::Collect();
}
using System;
namespace ReRegisterForFinalizeExample
{
class MyMainClass
{
static void Main()
{
// Create a MyFinalizeObject.
MyFinalizeObject mfo = new MyFinalizeObject();
// Release the reference to mfo.
mfo = null;
// Force a garbage collection.
GC.Collect();
// At this point mfo will have gone through the first Finalize.
// There should now be a reference to mfo in the static
// MyFinalizeObject.currentInstance field. Setting this value
// to null and forcing another garbage collection will now
// cause the object to Finalize permanently.
MyFinalizeObject.currentInstance = null;
GC.Collect();
}
}
class MyFinalizeObject
{
public static MyFinalizeObject currentInstance = null;
private bool hasFinalized = false;
~MyFinalizeObject()
{
if(hasFinalized == false)
{
Console.WriteLine("First finalization");
// Put this object back into a root by creating
// a reference to it.
MyFinalizeObject.currentInstance = this;
// Indicate that this instance has finalized once.
hasFinalized = true;
// Place a reference to this object back in the
// finalization queue.
GC.ReRegisterForFinalize(this);
}
else
{
Console.WriteLine("Second finalization");
}
}
}
}
open System
[<AllowNullLiteral>]
type MyFinalizeObject() =
let mutable hasFinalized = false
static member val CurrentInstance = null with get, set
override this.Finalize() =
if hasFinalized then
printfn "First finalization"
// Put this object back into a root by creating a reference to it.
MyFinalizeObject.CurrentInstance <- this
// Indicate that this instance has finalized once.
hasFinalized <- true
// Place a reference to this object back in the finalization queue.
GC.ReRegisterForFinalize this
else
printfn "Second finalization"
// Create a MyFinalizeObject.
let mutable mfo = MyFinalizeObject()
// Release the reference to mfo.
mfo <- null
// Force a garbage collection.
GC.Collect()
// At this point mfo will have gone through the first Finalize.
// There should now be a reference to mfo in the static
// MyFinalizeObject.CurrentInstance property. Setting this value
// to null and forcing another garbage collection will now
// cause the object to Finalize permanently.
MyFinalizeObject.CurrentInstance <- null
GC.Collect()
Namespace ReRegisterForFinalizeExample
Class MyMainClass
Shared Sub Main()
'Create a MyFinalizeObject.
Dim mfo As New MyFinalizeObject()
'Release the reference to mfo.
mfo = Nothing
'Force a garbage collection.
GC.Collect()
'At this point mfo will have gone through the first Finalize.
'There should now be a reference to mfo in the static
'MyFinalizeObject.currentInstance field. Setting this value
'to null and forcing another garbage collection will now
'cause the object to Finalize permanently.
MyFinalizeObject.currentInstance = Nothing
GC.Collect()
End Sub
End Class
Class MyFinalizeObject
Public Shared currentInstance As MyFinalizeObject = Nothing
Private hasFinalized As Boolean = False
Protected Overrides Sub Finalize()
If hasFinalized = False Then
Console.WriteLine("First finalization")
'Put this object back into a root by creating
'a reference to it.
MyFinalizeObject.currentInstance = Me
'Indicate that this instance has finalized once.
hasFinalized = True
'Place a reference to this object back in the
'finalization queue.
GC.ReRegisterForFinalize(Me)
Else
Console.WriteLine("Second finalization")
End If
MyBase.Finalize()
End Sub
End Class
End Namespace
注解
方法 ReRegisterForFinalize 将 obj
参数添加到在垃圾回收器释放对象之前请求终止的对象列表。 参数 obj
必须是此方法的调用方。
ReRegisterForFinalize调用 方法并不能保证垃圾回收器将调用对象的终结器。
默认情况下,实现终结器的所有对象都会添加到需要终结的对象列表中;但是,对象可能已经完成,或者可能已通过调用 SuppressFinalize 方法禁用了终结。
终结器可以使用此方法来恢复自身或其引用的对象。