gpt4 book ai didi

android - Android中是否可以监控各个方法的CPU,内存使用情况

转载 作者:行者123 更新时间:2023-11-30 01:50:24 25 4
gpt4 key购买 nike

我的 Android 应用程序有很多方法,每个方法可能运行 1000 行。我需要监控每种方法的 CPU、内存使用时间(毫秒),以便我可以知道哪种方法占用了大量 CPU、内存,我可以稍后对其进行优化。这可能吗?任何解决方案/建议都会有很大帮助:)

最佳答案

I finally found out how to do this - 

//Calculate function execution time
double start = System.currentTimeMillis();
double end = System.currentTimeMillis();
double t = (end - start);

//Calculate the amount of time that the current thread has spent executing code or waiting for certain types of I/O.
double start1 = Debug.threadCpuTimeNanos();
double end1 = Debug.threadCpuTimeNanos();
double t1 = (end1 - start1)/1000000;

//CPU Usage
double cpu = (t1/t) * 100;

//if t=0,cpu becomes infinity programmatically but it means cpu usage is 0.

关于android - Android中是否可以监控各个方法的CPU,内存使用情况,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33144554/

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