静态对象是固定的,不能由GC重新分配?
作者:互联网
我的班级中有一个静态变量,当我通过windbg / sos查看该对象时,该对象显示为“固定”.我认为这意味着GC无法在其他任何地方分配该对象.为什么将静态变量视为固定的任何想法?
这是我班上这个变量的声明
namespace ConsoleApplication1
{
class Program
{
static string Name = "Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
}
}
这是windbg的输出形式
0:004> !do 0231bb70
Name: System.String
MethodTable: 6c97f92c
EEClass: 6c6b8ba0
Size: 418(0x1a2) bytes
File: C:\Windows\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll
String: Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
Fields:
MT Field Offset Type VT Attr Value Name
6c9828f8 4000103 4 System.Int32 1 instance 202 m_stringLength
6c981d48 4000104 8 System.Char 1 instance 41 m_firstChar
6c97f92c 4000105 8 System.String 0 shared static Empty
>> Domain:Value 004f6588:02311228 <<
0:004> !gcroot 0231bb70
Scan Thread 0 OSTHread 2824
Scan Thread 2 OSTHread 1ae0
DOMAIN(004F6588):HANDLE(Pinned):1613f4:Root: 03312020(System.Object[])->
0231bb70(System.String)
DOMAIN(004F6588):HANDLE(Pinned):1613fc:Root: 03311010(System.Object[])->
0231bb70(System.String)
请参见!gcroot的输出,该显示为HANDLE(PINNED).我是否会误读此输出?
解决方法:
固定字符串的原因不是因为您具有静态引用,而是因为您具有字符串文字.默认情况下,字符串文字是Interned的,因此您将看到它们被固定.请同时参阅this question.
标签:sos,c,garbage-collection,windb 来源: https://codeday.me/bug/20191102/1988515.html