3

我正在使用BenchmarkDotNet.netcore 3.1 对我的代码进行基准测试。即使没有进行分配,当我获得内存分配结果时也会遇到某个问题。这是我正在做的事情的快照:

    [SimpleJob(RunStrategy.Monitoring, targetCount: 100)]
    [MemoryDiagnoser]
    public class Temp
    {
        public static Person[] array1 = Enumerable.Range(0, 100).Select(x => new Person(1, 2)).ToArray();

        [Benchmark]
        public Person ReturnFirstPerson()
        {
            return array1[0];
        }
    }

Person 是一个简单的类:

   public class Person
    {
        public int A;
        public int B;

        public Person(int a, int b)
        {
            this.A = a;
            this.B = b;
        }
    }

ReturnFirstPerson方法不计算或分配任何内存,只返回数组中的第一个值,这些是基准测试结果:

|            Method |     Mean |    Error |   StdDev | Gen 0 | Gen 1 | Gen 2 | Allocated |
|------------------ |---------:|---------:|---------:|------:|------:|------:|----------:|
| ReturnFirstPerson | 266.4 ns | 10.55 ns | 31.10 ns |     - |     - |     - |      48 B |

你能解释一下为什么结果显示内存分配吗?

4

0 回答 0