对于 U3D Stopwatch ElapsedTick 的疑惑

2020-06-11 21:06:44 +08:00
 bakatori

记录方法

    static public void time (string key) {
        if (timeKeyHub.ContainsKey (key)) {
            Debug.LogError ("MLOG.cs time key already exist");
        } else {
            System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch ();
            timeKeyHub.Add (key, sw);
            sw.Start ();
        }
    }
    static public void timeEnd (string key) {
        if (timeKeyHub.ContainsKey (key)) {
            System.Diagnostics.Stopwatch sw;
            timeKeyHub.TryGetValue (key, out sw);
            sw.Stop();
            Debug.Log (string.Format ("<color=blue>{0}</color> {1} ms {2} ticks", key, sw.ElapsedMilliseconds, sw.ElapsedTicks));
            // BIRDTODO:用池子
            sw = null;
            timeKeyHub.Remove (key);
        } else {
            Debug.LogError ("MLOG.cs timeend key not exist");
        }
    }

A*算法的部分代码

    MLOG.time("newCostDealer");
    MLOG.time("newCostDealer - newCost");
    float newCost = cost_so_far[cur]+ heuristic(next.Pos, end.Pos);
    MLOG.timeEnd("newCostDealer - newCost");

    MLOG.time("newCostDealer - 0");
    bool tmp2 = !cost_so_far.ContainsKey(next);
    MLOG.timeEnd("newCostDealer - 0");

    MLOG.time("newCostDealer - temp3");
    bool tmp3 = false;
    if (!tmp2) {
        tmp3 = newCost < cost_so_far[next];
    }
    MLOG.timeEnd("newCostDealer - temp3");

    if (tmp2 || tmp3)
    {
        MLOG.time("newCostDealer - 1");
        frontier.put(next, newCost);
        MLOG.timeEnd("newCostDealer - 1");

        MLOG.time("newCostDealer - 2");
        cost_so_far[next] = newCost;
        // MLOG.info("came_from[next] = cur," + next.ToString() + " " + cur.ToString());
        came_from[next] = cur;
        MLOG.timeEnd("newCostDealer - 2");
    }

    MLOG.timeEnd("newCostDealer");

运行结果:

求教,为啥 newCostDealer ticks 和其它记录加起来差那么多丫?!

1764 次点击
所在节点    UNITY
1 条回复
bakatori
2020-06-11 21:45:23 +08:00
求教

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/680811

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX