gpt4 book ai didi

c# - 线程本地存储内存使用

转载 作者:太空狗 更新时间:2023-10-29 20:37:37 24 4
gpt4 key购买 nike

.NET 中是否有一种方法可以确定线程本地存储占用的内存量?

具体来说,我正在查找 ThreadStatic 对象使用的内存量以及分配给 Thread 数据槽中对象的内存量(例如,通过调用 Thread.SetData)。

澄清一下:

线程本地存储: http://msdn.microsoft.com/en-us/library/6sby1byh.aspx

线程本地存储:线程相关的静态字段和数据槽 http://msdn.microsoft.com/en-us/library/6sby1byh.aspx

最佳答案

您可以按进程获取内存使用情况,如下所示。您可以使用其他几种内存测量 here .但是,我不太确定是否有办法通过线程获取内存使用情况。进程有Threads propertyProcessThread 的集合组成这正是您感兴趣的,但不是获取内存使用情况的直接方法。

// Get the current process.
Process currentProcess = System.Diagnostics.Process.GetCurrentProcess();

// Gets the amount of physical memory allocated for the associated process.
long totalNumberOfBytesUsed = currentProcess.WorkingSet64;

关于c# - 线程本地存储内存使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6367206/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com