开发者

c# toString() performance

开发者 https://www.devze.com 2023-03-03 19:34 出处:网络
I\'m curious about the ToString() method in C#. Take for example the following: object height = 10; string heightStr = height.ToString();

I'm curious about the ToString() method in C#. Take for example the following:

object height = 10;

string heightStr = height.ToString();

When I call ToString() on height, I get a string type back. Is the runtime allocating memory for th开发者_高级运维is string?


Yes, the runtime is going to allocate memory for any string object that you create or request, including one that is returned from a method call.

But no, this is absolutely not something that you have to worry about. It will not have any noticeable effect on the performance of your application, and you should never give in to the temptation to optimize code prematurely.

The Int32.ToString method is extremely quick. It calls down to native code written at the level of the CLR, which is not likely to be a performance bottleneck in any application.


In fact, the real performance problem here is going to be boxing, which is the process of converting a value type to type object and back again. This will occur because you declared the height variable as type object, and then assigned an integer value to it.

It is a far better idea to declare height explicitly as type int, like so:

int height = 10;
string heightStr = height.ToString();


Yes. Creating a new instance of a class (as is being done with the string class in this case) will allocate memory for the instance.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号