gpt4 book ai didi

c# - 使用 "new() and ".StartNew()"创建新实例有什么区别?

转载 作者:太空狗 更新时间:2023-10-29 21:02:03 26 4
gpt4 key购买 nike

来 self 对问题的“回答”"Stopwatch in a Task seems to be additive across all tasks, want to measure just task interval"

创建新的 Stopwatch 之间可能存在哪些差异?实例为:

Stopwatch timer = System.Diagnostics.Stopwatch.StartNew();

Stopwatch timer = new Stopwatch();
timer.Start();

隐含的子问题:
为什么要提供 StartNew() 方法?

最佳答案

StartNew,创建秒表的新实例并启动它。

Simple new 只是秒表实例化。它不会启动秒表。

对于您创建新实例并调用 Start 的当前代码,与 Stopwatch.StartNew()

应该没有任何区别

参见 Stopwatch.StartNew() - MSDN

This method is equivalent to calling the Stopwatch constructor and then calling Start on the new instance.

StartNew 提供了一种更简单的方法来一步创建和启动秒表。

关于c# - 使用 "new() and ".StartNew()"创建新实例有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16259437/

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