VC++ Win10,C# WIn10

VC++

复制代码
#pragma comment(lib,"rpcrt4.lib")
#include <chrono>
#include <iostream>
#include <Windows.h>

using namespace std;

void testTime(int x);

int main()
{
    testTime(10);
}

void testTime(int x)
{
    for (int i = 0; i < x; i++)
    {
        auto startTime = chrono::steady_clock::now();
        for (int j = 0; j < 100000000; j++)
        {
            UUID newUUID;
            UuidCreate(&newUUID);
        }
        auto endTime = chrono::steady_clock::now();
        cout << i << "," << chrono::duration_cast<chrono::milliseconds>(endTime - startTime).count() << " milliseconds!" << endl;
    }
    cin.get(); 
}
复制代码

 

 

 

C#

复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;

namespace ConsoleApp4
{
    internal class Program
    {
        static void Main(string[] args)
        {
            Stopwatch sw = new Stopwatch();
            for(int i=0;i<10;i++)
            {
                sw.Restart();
                for(int j=0;j<100000000;j++)
                {
                    Guid.NewGuid();
                }
                sw.Stop();
                Console.WriteLine($"{i},{sw.ElapsedMilliseconds} milliseconds");
            }
            Console.ReadLine();
        }
    }

    public class Book
    {
        public string Id { get; set; } = $"{Guid.NewGuid():N}";
        public string Name { get; set; }
    }
}
复制代码

 

 

posted @   FredGrit  阅读(30)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现
点击右上角即可分享
微信分享提示