D.3 static
Methods, static
Fields and Class Math
Although most methods execute in response to method calls on specific objects, this is not always the case. Sometimes a method performs a task that does not depend on the contents of any object. Such a method applies to the class in which it’s declared as a whole and is known as a static
method or a class method. It’s common for classes to contain convenient static
methods to perform common tasks. For example, recall that we used static
method pow
of class Math
to raise a value to a power in Fig. C.15. To declare a method as static
, place the keyword static
before the return type in the method’s declaration. For any class imported into your program, you can call the class’s static
methods by specifying ...
Get Android How to Program, 3/e now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.