简体   繁体   中英

c# toString() performance

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 this 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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM