Java Data Type Tutorial - Java Long.signum(long i)








Syntax

Long.signum(long i) has the following syntax.

public static int signum(long i)

Example

In the following code shows how to use Long.signum(long i) method.

It checks the sign for a negative value.

public class Main {
  public static void main(String[] args) {
    System.out.println(Long.signum(-10));
  }
}

The output: