Found 9326 Articles for Object Oriented Programming

Get the maximum of two numbers using Math.max in Java

George John
Updated on 26-Jun-2020 10:03:08

1K+ Views

To obtain the maximum of two numbers using Math.max in Java, we use the java.lang.Math.max() method. The Math.max() accepts two numbers and returns the greater of the two. The result is closer to positive infinity on the number line. Even if one of the values is not a number(NaN), the result is NaN.Declaration - The java.lang.Math.max() method is declared as follows −public static int max(int a, int b) public static double max(double a, double b) public static long max(long a, long b) public static float max(float a, float b)Let us see a program to get the maximum of two numbers ... Read More

Get floor value of a number using Math.floor in Java

Ankith Reddy
Updated on 26-Jun-2020 10:03:57

456 Views

To get the floor value of a number, we use the java.lang.Math.floor() method. The Math.floor() method returns the largest (closest to positive infinity) double value which is less than or equal to the parameter and has a value which is equal to a mathematical integer on the number line. If the parameter is NaN or an infinity or positive zero or negative zero, then the result is the same as the argument.Declaration - The java.lang.Math.floor() method is declared as follows −public static double floor(double a)Let us see a program to get the floor value of a number in Java.Example Live Demoimport ... Read More

Check if the String contains only unicode letters and space in Java

Arjun Thakur
Updated on 26-Jun-2020 10:05:37

1K+ Views

In order to check if a String has only unicode letters in Java, we use the isDigit() and charAt() methods with decision making statements.The isLetter(int codePoint) method determines whether the specific character (Unicode codePoint) is a letter. It returns a boolean value, either true or false.Declaration − The java.lang.Character.isLetter() method is declared as follows −public static boolean isLetter(int codePoint)where the parameter codePoint represents the character to be checked.The charAt() method returns a character value at a given index. It belongs to the String class in Java. The index must be between 0 to length()-1.Declaration − The java.lang.String.charAt() method is declared ... Read More

Get exponential value of a number using Math.exp in Java

Smita Kapse
Updated on 26-Jun-2020 13:24:59

3K+ Views

To get the exponential value of a number in Java, we use the java.lang.Math.exp() method. The Math.exp() returns a double value which is the Euler’s number e raised to the power of the argument. If the parameter is NaN, the result obtained is NaN. If the argument is positive infinity, then the result is positive infinity. In case the argument is negative infinity, then the output is positive zero.Declaration − The java.lang.Math.exp() method is declared as follows:public static double exp(double a)where a is the number representing the power to which e is raised to.Let us see a program to get ... Read More

Get ceiling value of a number using Math.ceil in Java

Nancy Den
Updated on 26-Jun-2020 13:25:18

1K+ Views

In order to get the ceiling value of a number in Java, we use the java.lang.Math.ceil() method. The Math.ceil() method returns the smallest (closest to negative infinity) double value which is greater than or equal to the parameter and has a value which is equal to a mathematical integer on the number line. If the parameter is NaN or an infinity or positive zero or negative zero, then the result is the same as the argument. If the argument value is less than zero but greater than -1.0, then the value returned is negative zero.Declaration − The java.lang.Math.ceil() method is ... Read More

Get the absolute value of float, int, double and long in Java

Anvi Jain
Updated on 26-Jun-2020 13:25:43

812 Views

The java.lang.Math class has an abs() method which facilitates us to find the absolute values of different data types.Absolute value of floatIn order to compute the absolute value of a float value, we use the java.lang.Math.abs(float a) method. If the argument ‘a’ is negative, the negation of ‘a’ is returned. If the argument ‘a’ is non-negative, the argument itself is returned. When the argument is positive zero or negative zero, the result is positive zero. In case the argument is infinite, the result is positive infinity. If the argument is NaN, the result is NaN.Declaration − The declaration of Math.abs(float ... Read More

Place Stack Trace into a String in Java

Nancy Den
Updated on 26-Jun-2020 13:28:16

294 Views

In order to place stack trace into a String in Java, we use the java.io.StringWriter and java.io.PrintWriter classes. In a catch block, after catching the exception, we print the stack trace by printStackTrace() method and write it into the writer and then use the ToString() method to convert it into a String.Let us see a program to place the stack trace into a String in Java.Example Live Demoimport java.io.PrintWriter; import java.io.StringWriter; public class Example {    public static void main(String[] args) {       try{          int ans = 10/0;       }catch (ArithmeticException ex) { ... Read More

Print stack trace in Java

Krantik Chavan
Updated on 26-Jun-2020 13:32:02

5K+ Views

In order to print the stack trace in Java, we use the java.lang.Throwable.printStackTrace() method. The printStackTrace() method prints the throwable and its backtrace in the standard error stream.Declaration - The java.lang.Throwable.printStackTrace() method is declared as follows −public void printStackTrace()Let us see a program to print the stack trace in Java.Example Live Demopublic class Example {    public static void main(String args[]) throws Throwable {       try {          int n = 3;          System.out.println(n/0);       } catch (ArithmeticException e) {          System.out.println("Printing stack trace...");         ... Read More

Check whether a String has only unicode digits in Java

Smita Kapse
Updated on 26-Jun-2020 13:33:42

368 Views

In order to check if a String has only unicode digits in Java, we use the isDigit() method and charAt() method with decision making statements.The isDigit(int codePoint) method determines whether the specific character (Unicode codePoint) is a digit. It returns a boolean value, either true or false.Declaration − The java.lang.Character.isDigit() method is declared as follows −public static boolean isDigit(int codePoint)where the parameter codePoint represents the character to be checked.The charAt() method returns a character value at a given index. It belongs to the String class in Java. The index must be between 0 to length()-1.Declaration − The java.lang.String.charAt() method is ... Read More

Check if the String has only unicode digits or space in Java

Nancy Den
Updated on 26-Jun-2020 13:42:19

4K+ Views

In order to check if a String has only unicode digits or space in Java, we use the isDigit() method and the charAt() method with decision making statements.The isDigit(int codePoint) method determines whether the specific character (Unicode codePoint) is a digit. It returns a boolean value, either true or false.Declaration - The java.lang.Character.isDigit() method is declared as follows −public static boolean isDigit(int codePoint)The charAt() method returns a character value at a given index. It belongs to the String class in Java. The index must be between 0 to length()-1.Declaration − The java.lang.String.charAt() method is declared as follows −public char charAt(int ... Read More

Advertisements