C#Stopwatch的使用,效能測試

來源:互聯網
上載者:User

標籤:

 

一,先開啟開始或繼續測量某個時間間隔的已耗用時間,然後停止,最後重設時間,輸出.

using System;using System.Collections.Generic;using System.Diagnostics;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;public partial class TestPerformance : System.Web.UI.Page{    protected void Page_Load(object sender, EventArgs e)    {        /*Var 效能測試 */        Stopwatch stw = new Stopwatch();        List<long> intlist = new List<long>();        stw.Start();        for (long i = 0; i < 10000000; i++)        {            var index = i;//使用var轉入和轉出            intlist.Add(index);        }        stw.Stop();        Label1.Text= stw.Elapsed.Ticks.ToString();         stw.Reset();        /*Int 效能測試 */        List<long> intlist2 = new List<long>();        stw.Start();//開始時間        for (long i = 0; i < 1000000; i++)        {            long index = i;//使用int轉入和轉出            intlist2.Add(index);        }        stw.Stop();        Label2.Text = stw.Elapsed.Ticks.ToString();        stw.Reset();        /*Object效能測試 */        stw.Start();//開始時間        List<long> intlist3 = new List<long>();        for (long i = 0; i < 1000000; i++)        {            object index = i;//使用object轉入和轉出            intlist3.Add((long)index);        }        stw.Stop();        Label3.Text = stw.Elapsed.Ticks.ToString();     }}

二,最上層顯示

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="TestPerformance.aspx.cs" Inherits="TestPerformance" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>    <title></title></head><body>    <form id="form1" runat="server">    <div>        Var:<asp:Label ID="Label1" runat="server" Text="Var"></asp:Label><br/>        Int:<asp:Label ID="Label2" runat="server" Text="Int"></asp:Label><br/>        Object:<asp:Label ID="Label3" runat="server" Text="Object"></asp:Label>    </div>    </form></body></html>

三,顯示結果

C#Stopwatch的使用,效能測試

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.