Math Class

Descrição

Slides sobre Math Class, criado por Shannon Anderson-Rush em 08-09-2019.
Shannon Anderson-Rush
Slides por Shannon Anderson-Rush, atualizado more than 1 year ago
Shannon Anderson-Rush
Criado por Shannon Anderson-Rush aproximadamente 5 anos atrás
1798
0

Resumo de Recurso

Slide 1

    The Math class is another frequently used class that contains several methods: abs( ) returns the absolute value round( ) rounds to the nearest whole number ceil( ) rounds up floor( ) rounds down max(x, y) returns the larger value of x and y min(x, y) returns the smaller value of x and y pow(x, y) returns x to the power of y random( ) returns a double in the range [0, 1.0) sqrt( ) returns the square root
    Math Class Methods

Slide 2

    Static Methods
    The methods in the Math class are static. Static means that the methods do not require the creation of an object in order to invoke them. They are invoked through the class name. Static methods are used when we will have the same result regardless of the object. For example, the abs( ) method will compute the absolute value of the number given every time. No individual object will change that computation.  Most Math methods will return a double value, however, there are some that return integers.

Slide 3

    Examples
    System.out.println(Math.abs(-3)); System.out.println(Math.ceil(4.201)); System.out.println(Math.floor(5.511)); System.out.println(Math.max(1, -4)); System.out.println(Math.abs(-2, 0)); System.out.println(Math.pow(2, 3)); System.out.println(Math.round(3.59)); System.out.println(Math.sqrt(529)); System.out.println(Math.abs(-3));

Semelhante

Scientific Notations
Cori Harper
Division - 10/5/17
Cori Harper
Noções de Direito Administrativo
Alynne Saraiva
Matemática e suas Tecnologias
Antonio Sávio
10 Dicas para lidar com conflitos no ambiente de trabalho
Liliane Tubino
Revisão de Direito Penal
Alice Sousa
Regras NBRs
Maria Clara Oliveira
SÍNTESE PROTEICA
Jaciara Craveiro
Ecologia
vivi sousa
Art. 5º da CF/88
Luís Felipe Mesiano