试用VS2005中的Performance Tools
废话不说了,发现VS2005自带了Performance Tools,这下可以不再用第3方或自己写的一些简单的测试性能工具了。
[1] 菜单"Tools" -> "Performance Wizard",之后注意选择在Mode of profiling选择Instrucmentation
就行了。
[2] 之后在Performance Explorer中Launch你的项目。
[3] 程序结束后,就可以看性能报告了。
我写了如下一个小程序:
class Program
{
static public void f1()
{
string s = "1";
for (int i = 0; i < 1000; i++)
{
s += "1";
}
}
static public void f2()
{
StringBuilder s = new StringBuilder("1");
for (int i = 0; i < 1000; i++)
{
s.Append("1");
}
}
static void Main(string[] args)
{
f1(); f2();
}
}
{
static public void f1()
{
string s = "1";
for (int i = 0; i < 1000; i++)
{
s += "1";
}
}
static public void f2()
{
StringBuilder s = new StringBuilder("1");
for (int i = 0; i < 1000; i++)
{
s.Append("1");
}
}
static void Main(string[] args)
{
f1(); f2();
}
}
运行结束后可以看到报告了