2

我想在我的 Windows Phone 8 的 cocos2dx 应用程序中找到一些内存泄漏。IDE是 Visual Studio Express 2012。我看到了这个用于应用程序分析的链接。但正如页面上所写,“只有执行选项可用于 Direct3D 应用程序”。我无法弄清楚cocos2dx在 windows phone 中使用 directx 的内存分析选项。我应该如何检测内存泄漏?

4

1 回答 1

0

您可以通过以下代码检测应用程序内存使用情况。在 App.xaml.cs 中添加以下代码

公共部分类应用程序:应用程序{

    private static Timer timer = null;
    public static void BeginRecording()
    {

        if (System.Diagnostics.Debugger.IsAttached)
        {
            // start a timer to report memory conditions every 2 seconds
            timer = new Timer(state =>
            {
                // every 2 seconds do something 
                string report =
                DateTime.Now.ToLongTimeString() + " memory conditions: " +
                Environment.NewLine +
                "\tApplicationCurrentMemoryUsage: " +
                    getExactValue(DeviceStatus.ApplicationCurrentMemoryUsage) + " MB" +
                    Environment.NewLine +
                "\tApplicationPeakMemoryUsage: " +
                    getExactValue(DeviceStatus.ApplicationPeakMemoryUsage) + " MB" +
                    Environment.NewLine +
                "\tApplicationMemoryUsageLimit: " +
                    getActualValue(DeviceStatus.ApplicationMemoryUsageLimit) + " MB" +
                    Environment.NewLine +
                "\tDeviceTotalMemory: " + getActualValue(DeviceStatus.DeviceTotalMemory) + " MB" + Environment.NewLine +
                "\tApplicationWorkingSetLimit: " +
                    getActualValue(Convert.ToInt64(DeviceExtendedProperties.GetValue("ApplicationWorkingSetLimit"))) + " MB" +
                    Environment.NewLine;

                // write to IsoStore or debug conolse
                Debug.WriteLine(report);
            },
            null,
            TimeSpan.FromSeconds(2),
            TimeSpan.FromSeconds(2));
        }
    }
    public static decimal getExactValue(long stats)
    {
        return Math.Round(((decimal)(stats) / (decimal)(1048576.00)), 2);
    }

    public static int getActualValue(long stats)
    {
        return ((int)Math.Ceiling(getExactValue(stats)));
    }

现在调用 application_launching 中的 BeginRecording() 函数。这将在每 2 秒后为您提供准确的内存统计信息,并且您可以识别内存泄漏。

于 2014-07-10T05:06:55.223 回答