vote up 2 vote down star
1

I've got the following in a static Utility class:

static int[] MonthDays = new int[] {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31};
public static int[] GetListOfAllDaysForMonths()
{
    return MonthDays;
}

Is this efficient in that now by calling GetListOfAllDaysForMonths() in several places in code, that I am saving myself from having to allocate and create a new int[] each time this method is called?

Updated: Lets make it readonly

 static readonly int[]
flag

63% accept rate
1  
I'm really curious how this is used... – Austin Salonen Oct 29 at 20:36
3  
I'm wondering why this level of premature-optimization is so common high-level "managed" languages. – pst Oct 29 at 20:41
4  
@coffeeaddict: readonly doesn't do what you want; it makes the array readonly, not the elements. – Fredrik Mörk Oct 29 at 20:44
2  
@coffeeaddict: If that's the case, I would make a control, hard-code the days dropdown and use the control in all your forms. – Austin Salonen Oct 29 at 20:45
1  
@pst: Funny how that works, isn't it. I'd be willing to bet that almost any implementation of this routine will be so fast, and use so little memory, as to not make any difference. The obvious exception being reading the list of days from a database, which I'm sure somebody has tried before... – Mark Bessey Oct 29 at 21:02
show 3 more comments

11 Answers

vote up 2 vote down

Even if it makes a difference, it is so small as to make it completely irrelevant. Micro optimizations are pointless (except for the few times they aren't, the only way you will know what those are is if you run into bottlenecks). Don't let the allocation of a 12 element array bother you, instead focus on algorithmic efficacy, because that is where you will see a difference.

link|flag
vote up 1 vote down

Have you considered using the built-in ASP.NET Calendar control rather than rolling your own date picker?

link|flag
vote up 0 vote down

If this is used just to populate drop downs, then how about a method like this:

populateDaysList(ListItemsCollection items) {
  items.Add(new ListItem("1"));
  items.Add(new ListItem("2"));
  items.Add(new ListItem("3"));
  ...
  items.Add(new ListItem("31"));
}

No need for an array or an iterator (for or foreach) to read through it

link|flag
Ugh, no. If you're going to do this, you may as well hard-code the html for the drop down list. That would be the fastest thing. – Joel Coehoorn Oct 29 at 21:20
fastest maybe, but a lot of repeated code. The ideal thing would be a custom control with this code built-in. Since the questioner said he was not going to do that, I believe this to be a good way avoid the code repetition with good performance (even if it is a lttle ugly). – Ray Oct 29 at 21:34
because you're again hard coding a LOT there. I like the Enumerator where you aren't hard coding a bunch of numbers. Those are magic strings that are unecessary. You can just bind to the array, one line. – coffeeaddict Oct 29 at 22:33
Your question asked about efficiency, not elegance. I agree that the Enumberable trick is elegant. However, for performance, my way eliminates data binding, for/foreach loops, and int-to-string conversions (31 of them every time you load a drop-down list). Hard coded, yes, but only once, and pretty easy to get right. – Ray Oct 30 at 11:33
@coffeeaddict - good point about hard-coding. You never know when they'll add a new month with 32 days! – Dan Diplo Nov 4 at 14:22
vote up 1 vote down

why optimise this? it's premature, the value you get out of doing this is probably so small you'll never notice it. If it ever did become a problem, then that is the time you optimise, doing so before hand is a waste of time, resource and can make code unnecessarily complicated and messy.

link|flag
vote up 6 vote down

If this is truely to populate a dropdown, why not use DateTime's DaysInMonth static method to get the number of days given the year and month, then create an array containing those values (using Enumerable.Range or some such) to populate the dropdown?

DateTime.DaysInMonth(2009, 10); // returns 31
DateTime.DaysInMonth(2009, 2); // returns 28
DateTime.DaysInMonth(2012, 2); // returns 29
DateTime.DaysInMonth(2009, 9); // returns 30
link|flag
because look at all the hard coded numbers there and this method is to be reused in multiple asp.net pages. – coffeeaddict Oct 29 at 20:46
your code is very long. All I'd have to do ist just bind to the returned static int[] to my dropdown, one line of code! – coffeeaddict Oct 29 at 20:46
myDropdown.DataSource = GetListOfAllDaysForMonths(); This only happens on first load of the page to give the dropdown a default set of numbers for days. The selected value will be something like "-Day=". We will start with 31 numbers as a good starting point. When the user changes the month, this day dropdown will change dynamically with javascript. – coffeeaddict Oct 29 at 20:48
1  
I only hard-coded them as examples. I assumed you'd be feeding those values in from another source, then use something like pmarflee's answer to turn it into an array – R. Bemrose Oct 29 at 20:49
there's no need to feed those values in from another source. There are 31 days by default in a month. We are not setting it to a particular month however we do need something in the day dropdownlist for JavaScript to run with. – coffeeaddict Oct 29 at 20:58
show 3 more comments
vote up 4 vote down

You could also initialize the variable with Enumerable.Range.

static int[] MonthDays = Enumerable.Range(1, 31).ToArray();
link|flag
I'd remove the .ToArray and just keep it as an IEnumerable. That's likely the best way to handle this: _never_ have the entire array in memory. – Joel Coehoorn Oct 29 at 21:19
vote up 0 vote down

If you don't mind that callers can change the array and mess up other callers, then this an optimization, but tricky in my opinion.

link|flag
vote up 10 vote down

Yes, but you also open for some interesting side effects. Consider this:

int[] a = GetListOfAllDaysForMonths();
a[3] = 200;
int[] b = GetListOfAllDaysForMonths();
Console.WriteLine(b[3]);  // prints 200

Update
Given the intended use (default numbers for day-of-month in dropdown lists), you will need many (and I mean many, as in hundreds of thousands or millions) such lists for this kind of optimization to make a difference. I would not spend time trying to optimize this from memory allocation perspective; it simply will not be worth it.

For now, I would recommend you to just have a method return a new int[] (exposed as an IEnumerable<int>) with the numbers for each call. Then, at a later date, if you happen to identify this to pose a problem with memory or performance, then you can optimize that method.

link|flag
I've updated my post. I actually will make this a readonly int[] array. – coffeeaddict Oct 29 at 21:10
we don't do the "after" on performance. Unnecessary allocations are obvious reductions to aim for and automatically help the cause of performance improvement in an overall application. – coffeeaddict Oct 29 at 21:11
@coffee: "after" is the only correct way to test performance. Otherwise, you're just guess and will likely miss the more important bottleneck in favor of micro-optimizations. – Joel Coehoorn Oct 29 at 21:18
Joel, of course you need to test after. But there are obvious things that you don't need to wait for. One of them is reducing unnecessary allocations which is a given. Creating an object when it should only be and needs to only be created once is a huge efficiency gain. – coffeeaddict Oct 29 at 21:24
vote up 5 vote down

Yes, it will only be created once, although be aware that if any code decides to modify the return value then it will be reflected for all other callers, so it may be preferable to return a new copy each time. Alternatively you could only expose IEnumerable<int> instead. Incidently, you could also replace the initialiser to:

static int[] MonthDays = Enumerable.Range(1, 31).ToArray()

link|flag
1  
+1 for showing a better way to do it. Hand-typing stuff like this is prone to tyepos. Way, way, way better to do it procedurally. – Randolpho Oct 29 at 20:31
Also typing it out makes him data entry not programmer. – Yuriy Faktorovich Oct 29 at 20:32
I hate hand typing this crap.. I agree. – coffeeaddict Oct 29 at 20:40
but how is it created once, is it the first time any of the code in your application uses the static class that contains this? When is that int[] created, what action in reference to the static class being used? – coffeeaddict Oct 29 at 20:45
I'd remove the .ToArray and just keep it as an IEnumerable. That's likely the best way to handle this: **never** have the entire array in memory. – Joel Coehoorn Oct 29 at 21:17
show 3 more comments
vote up 3 vote down

It is true that you will save allocating a new array every time GetListOfAllDaysForMonths is called by using the static variable. What's ambiguous is whether or not this is a worthwhile change for your code. That answer is highly dependent on the use cases of this method within your application. Only a profiler can tell you if this is a worthwhile savings.

link|flag
everything we do for our e-commerce site is worth while to save allocations. – coffeeaddict Oct 29 at 20:40
I don't think it takes a profiler in this situation. The less instances you are allocating in any application the better your performance. You always aim for lowest object count and save allocations where possible. – coffeeaddict Oct 29 at 21:09
vote up 6 vote down

Yes, this is effectively allowing you to re-use the same array and not re-allocate a new one each time.

However, since you are returning an array (which is mutable) you cannot guarantee that the caller of your method isn't modifying the array once you return it. It would be much better to return an IEnumerable<T> or a ReadOnlyCollection<T> so that you can be sure that no one is modifying the collection besides you. (This has nothing to do with performance - just something I thought would be important to point out.)

link|flag
well this is a readonly array...it's only going to be used to populate a dropdown for days in a month...the default number of days. – coffeeaddict Oct 29 at 20:39
@coffee: it's not readonly. You just happen to only ever read from it. There's an important difference there. – Joel Coehoorn Oct 29 at 21:04
I'll be adding the keyword readonly to the int[]. See my updated thread. – coffeeaddict Oct 29 at 21:10
Go ahead and try that, see what the compiler tells you... – Joel Coehoorn Oct 29 at 21:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.