Does .Net have any built in constants for common numbers like million, billion etc?

EDIT: As has been suggested this was for readability reasons, rather than writing 1000000 or 1000000000. I know I can create my own just wanted to check that they didnt already exist before I did so.

link|improve this question

24  
Are you expecting the value of OneBillion to change? – Rex M Oct 29 '09 at 15:18
1  
Need the picture of the face of Dr Evil somewhere. – Pierre-Alain Vigeant Oct 29 '09 at 15:30
4  
+1 @rexm Only if your server will travel between the US and the UK – Chris Ballance Oct 29 '09 at 15:35
Re: Rex M - no, but I am expecting to compare numbers to it in various places so using a constant would be more readable. – Simon Keep Oct 29 '09 at 15:42
1  
There are at least a billion different ways to do this... – Chris Ballance Oct 29 '09 at 17:12
show 1 more comment
feedback

12 Answers

up vote 12 down vote accepted

I can see your point where a manifest constant in code like 1000000000 might have a readability problem "is that one hundred million or a billion". However, I'd create a constant that suited the particular situation rather than a generic constant. For example

#define BANKOFAMERICA_TARP_AMOUNT 1000000000.0; // One billion dollars
link|improve this answer
7  
+1 for making me laugh, then cry... – Chris Ballance Oct 29 '09 at 15:34
+1 for hilarity – Kevin Laity Oct 29 '09 at 15:43
that constant should be closer to 153000000000, according to this: en.wikipedia.org/wiki/…. I'm going to go prepare for doomsday now. – rmeador Oct 29 '09 at 16:18
excuse me, I did my math wrong. That should have been 163000000000. Note that this will not fit in a 32 bit integer. – rmeador Oct 29 '09 at 16:24
When I said "Dollars" I meant "Gold Sovereigns", but I figured the reference might be a bit vague... :) – Bob Kaufman Oct 29 '09 at 16:28
show 2 more comments
feedback

Sure, they are named 1e6, 1e9, etc... ;-)

link|improve this answer
Hey, I didn't know that. That's nice. – Pierre-Alain Vigeant Oct 29 '09 at 15:28
2  
As with the other comment, while this is intended as a joke, you're listing literals, not constants. – Adam Robinson Oct 29 '09 at 15:29
@Adam: Sure, that's the point of the joke. :-) Thanks, though, for pointing it out, since this might not be obvious to everyone. @All: Note that the above literals return floating-point values, not integers. – Heinzi Oct 29 '09 at 15:34
4  
+1 All this time I have been wasting zeros. – DancesWithBamboo Oct 29 '09 at 15:39
why have we not thought about this earlier... shame on us! – Nicolas Dorier Oct 29 '09 at 20:30
feedback

No. In general, constant values are best used for literals which have semantics outside of their value. For example, 3.14159 is a literal, but it's also a broadly important mathematical value, π (albeit an approximation).

By comparison, a number like 1,000,000 is simply a literal and doesn't necessarily have any general meaning other than its value, so there's not much worth in making it a built-in constant. In a particular application or context, however, it might be important -- perhaps 1,000,000 is the maximum number of ShippingContainers your tanker can hold or something similar. That's where you'd use a constant.

link|improve this answer
2  
It's even more important to realize that numbers like million and billion only even have the slightest meaning in base-10. – Adam Robinson Oct 29 '09 at 15:25
1  
3.14159 is not π, it's merely an approximation within an error of around 2.7e-6. – Joey Oct 29 '09 at 15:32
@ Johannes, with pi, an approximation is all you can ever get. – gn22 Oct 29 '09 at 15:36
@Gurdas: Depends on your programming language/library. It might be an interesting exercise to provide a precise "Pi" constant in a language that supports lazy evaluation of irrational numbers... – Heinzi Oct 29 '09 at 16:06
@Gurdas: going along with what @Heinzi said, if your language supports lazy evaluation and/or symbolic evaluation, it's entirely possible to create expressions where the πs cancel out and you're left with an exact result. – rmeador Oct 29 '09 at 16:20
show 2 more comments
feedback

Why do you think million and billion are common numbers?

link|improve this answer
er, yes in my application. – Simon Keep Oct 29 '09 at 15:50
3  
@Si: your application, hence the need for you to define your own constants ;) – Adam Robinson Oct 29 '09 at 15:58
feedback

No,

There are a few constant avallable, like

  • double.Epsilon
  • Math.PI

But not for million and billion.

You can create your own constants

public const int OneMillion = 1000000;

I presume you are looking to transform a number like int value = 1000000 into a natural string like string value = "1 million".

That don't exist in .NET by default, but it could be coded easily or I presume you could find such code on Google.

For example, you could create an extension method on int that transform the number into a human natural language string: (this is cheap code from off the head)

public static string ToNaturalString(this int value)
{
    if (value == 1000000)
        return "1 million";
    else
        return value.ToString();
}
link|improve this answer
A little correction: it is possible to format a number like that, by using one or more commas directly after the number placeholder. Each comma scales by 1000 and then the result is rounded: 1000000.ToString("0,, 'million'") == "1 million"; 1500000.ToString("0,, 'million'") == "2 million" – Ruben Oct 29 '09 at 15:28
Its very sensitive to the current culture, so it is dangerous to rely on the comma although you could format into InvariantLanguage. – Pierre-Alain Vigeant Oct 29 '09 at 15:29
Specifically, remember that many cultures interchange the meaning of "." and "," in numbers. Is 100,000 an integral hundred thousand or a floating-point hundred? Depends on where you are. – David Thornley Oct 29 '09 at 15:53
feedback

Even if there were such constant, the word "billion" means different things whether you're American or European.

In North America, a billion equals 1,000,000,000 = 10^9; in Europe, a billion equals 1,000,000,000,000 = 10^12. (A milliard = 10^9.)

link|improve this answer
3  
Clearly the Euro's are wrong ;) Millard? Isn't that a duck? – Adam Robinson Oct 29 '09 at 15:32
1  
I don't know which bit of Europe you're referring to, but for everywhere I've been (including where I live in the UK) a billion is not 1,000,000,000,000! It's 1,000,000,000 – joshcomley Oct 29 '09 at 15:40
Clearly you Yanks are wrong and don't know your Europeans! – joshcomley Oct 29 '09 at 15:43
1  
@joshcomley: List of long-scale countries listed here: en.wikipedia.org/wiki/Long_and_short_scales#Current_usage – Tenner Oct 29 '09 at 15:44
1  
@Tenner - But I'm European! You can't just generalise and say "Europe", that is misleading and just wrong – joshcomley Oct 29 '09 at 15:47
show 2 more comments
feedback

I'm going with no.

There are built in constants for the largest and smallest number that will fit in an int or long, for example, but no arbitrary constants between those points.

link|improve this answer
feedback

I don't think we could have one on the grounds that there is a difference between a US Billion (one hundred thousand million) and a British (and others?) Billion (one million million)

Differences in short scale and long scale numbering

link|improve this answer
Couldnt there be 2 constants for billion, with different names? – Simon Keep Oct 29 '09 at 16:00
Yes, that's possible I suppose – Rob Cowell Oct 29 '09 at 16:27
As mentioned in the link you provided a US billion is one thousand million, not one hundred thousand million. – David Winslow Feb 15 '10 at 16:36
Consider me suitably admonished for posting first, finding a suitable article second – Rob Cowell Feb 17 '10 at 8:54
feedback

My favorite to use is:

public const float EleventyBillion = 110000000000;
link|improve this answer
Wouldn't eleventy billion be 110,000,000,000? What you listed was eleven billion. – Adam Robinson Oct 29 '09 at 15:32
@Adam Indeed, thank you sir. – Chris Ballance Oct 29 '09 at 15:33
feedback

Somewhat tongue-in-cheek, but there's nothing stopping you putting extension methods on int:

public static int million(this int i)
{
    return i * 1000000;
}

in order to make

 int approximatePopulationOfUnitedStates = 300.million();

valid code...

link|improve this answer
Oh, the horror! – Adam Robinson Oct 29 '09 at 15:46
in a strange way, I really like that. – Simon Keep Oct 29 '09 at 15:52
It's worse than that, it's 350.million()! – user159335 Oct 29 '09 at 15:53
1  
300.Thousand().Million() == 300.Billion() – Adam Robinson Oct 29 '09 at 15:56
You could also add all sorts of other extensions, like Tenths and Hundredths. God save us. – Adam Robinson Oct 29 '09 at 16:03
feedback

could do something neat like have a library class

public class One
{
  public const int Thousand = 1000;
  public const int Million = Thousand * Thousand;
  public const int Billion = Million * Million;
  ...
}

Then when you go to use it it looks a bit neater

int myNumber = 72 * One.Million;

I must admit, I do this sometimes just for purely readability (however just have consts at the top of a class, not a dedicated library). Sometimes it's useful for numbers to have something like

// Add one to account for whatever
int countPlus1 = count + 1;

if you are referencing it a heap of times afterwards, it just makes code that little bit neater IMO. Also makes commenting easier, as it's easier to put a short comment at the start to understand why you are adding one to the variable all the time than just see random count + 1 code.

link|improve this answer
feedback

Yes

int million = 1000000;
int billion = 1000000000;

Just like 5, a, and -1, these are constants.

link|improve this answer
8  
No, those are literals. – Adam Robinson Oct 29 '09 at 15:26
1  
@Adam Robinson: I'd say there's nothing more constant than a literal. – Dinah Oct 29 '09 at 15:27
double one = 1.5; Assert.That(one + one == 3); Q.E.D. – Krypes Oct 29 '09 at 15:28
@Dinah: Death and taxes come to mind. Nonetheless, as terms of art "constant" and "literal" are different. – Adam Robinson Oct 29 '09 at 15:28
@Adam Robinson: since we're splitting hairs, technically we could eliminate taxes and scientists may even one day cheat death, but 'a' will always be 'a' and 5 will always be 5. – Dinah Oct 29 '09 at 15:32
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

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