开发者

Which will perform better, parsing string each iteration, or parsing once and storing

I'm creating a vb.net winforms application that will take in user given strings, parse them, and print out labels with variable information. The given string will be used 开发者_StackOverflowin all the labels, but the variable part of the string will change with each label.

My question is: is it better to parse the strings one time, then store those values in arrays, or to parse the string each time a label is printed? Which will perform better? Which is better practice? What is the proper way to test something like this?


If saving data in memory is done for performance, my preference would be not to do it until I knew the parsing was actually a performance problem, which I detect by random-pausing.

Generally my rule of thumb is - the less data structure the better. If you have data structure you have to worry about it getting stale, and any time you change the program you have more code to modify and put bugs into.

Besides, parsing does not need to be slow, especially compared to whatever else you're doing.


Parsing is definitely heavy stuff.

In this particular instance if you do not have any memory constraints then you should parse once and store to speed up your application, especially if it is going to be something that is being used by people :)

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜