vote up 5 vote down star

Why are the methods of the Math class static ?

flag

8 Answers

vote up -1 vote down check

They can be invoked as if they are a mathematical code library.

link|flag
vote up 17 vote down

Because they don't require any internal state, but there are no stand-alone functions in Java -- every function has to be a member of a class. Thus, they're static.

link|flag
vote up 1 vote down

Largely because these are utility methods, many of which can be applied to computations on primitives. The purpose of the class is in large part to offer a standard library of functions, many of which don't need to be applied directly to an object.

link|flag
vote up 2 vote down

They are static because the methods do not rely on instance variables of the Math class.

link|flag
and, they're not polymorphic/virtual. – ChrisW Feb 23 at 1:19
vote up 2 vote down

Static functions are "side-effect" free. There is no need to keep track of state variables when you are expecting a single result from computation.

link|flag
Static functions are not per definition side-effect free. – eljenso Feb 23 at 8:13
vote up 4 vote down

When you have methods that don't really involve a state or a class (E.g., math functions, utilities on arrays, etc.), the class is just used to "group" them into a coherent location. So you list them as static (since they do not touch state) and since you never actually instantiate the class.

link|flag
vote up 2 vote down

Along with what everyone else has said... static methods are faster to call for 2 reasons:

  1. they are not polymorphic - so it is a special JVM instruction to run them
  2. they do not need to pass "this" as the first argument - not passing arguments means less items on the stack which means less time spent putting items on the stack
link|flag
vote up 0 vote down

They need to be static because numbers are primitives and not proper classes, so they cannot be instance methods of the number types.

Now Java also has classes for boxing numbers, but it would be too inefficient to create an object for each mathematical operation.

In other languages, e.g. Smalltalk, numbers are classes and all arithmetic operations are instance methods.

link|flag

Your Answer

Get an OpenID
or

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