How many methods are there in java with examples

Brown 156 Published: 12/15/2024

How many methods are there in java with examples

I'm glad you asked! In Java, there are several built-in methods that can be used to perform various operations. Here are some of the most commonly used methods in Java:

1. Arithmetic Methods

Java provides a set of arithmetic methods for performing basic mathematical operations.

+ (addition): int a = 5; int b = 3; int sum = a + b; - (subtraction): int a = 5; int b = 3; int difference = a - b;

* (multiplication): int a = 5; int b = 3; int product = a * b; / (division): int a = 10; int b = 2; int quotient = a / b;

% (modulus): int a = 17; int b = 5; int remainder = a % b;

2. Comparison Methods

Java provides comparison methods to compare values.

== (equality): int a = 5; int b = 5; boolean result = a == b; != (inequality): int a = 5; int b = 3; boolean result = a != b; < (less than): int a = 5; int b = 7; boolean result = a < b; > (greater than): int a = 7; int b = 5; boolean result = a > b; <= (less than or equal to): int a = 5; int b = 5; boolean result = a <= b;

>= (greater than or equal to): int a = 7; int b = 7; boolean result = a >= b;

3. Logical Methods

Java provides logical methods for performing logical operations.

&& (logical and): boolean a = true; boolean b = false; boolean result = a && b; || (logical or): boolean a = true; boolean b = false; boolean result = a || b; ! (logical not): boolean a = true; boolean result = !a;

4. String Methods

Java provides various string methods for manipulating strings.

toString() (converts an object to a string): Integer i = 5; String str = i.toString(); concat() (concatenates two strings): String str1 = "Hello "; String str2 = "World"; String result = str1.concat(str2); trim() (removes whitespace from the beginning and end of a string): String str = " Hello World "; String result = str.trim();

5. Array Methods

Java provides array methods for manipulating arrays.

length (gets the length of an array): int[] arr = new int[5]; int length = arr.length; clone() (creates a copy of an array): int[] original = {1, 2, 3}; int[] clone = original.clone();

6. Math Methods

Java provides math methods for performing mathematical operations.

abs() (calculates the absolute value of a number): double x = -5.5; double result = Math.abs(x); ceil() (rounds up to the nearest integer): double x = 3.7; int result = (int) Math.ceil(x);

7. Date Methods

Java provides date methods for working with dates and times.

parse() (parses a string into a date object): String str = "2022-01-01"; Date date = Date.parse(str); format() (formats a date object as a string): Date date = new Date(); String str = DateFormat.format(date, "yyyy-MM-dd");

These are just a few examples of the many methods available in Java. Each method has its own unique purpose and can be used to perform a specific operation or task.

Can we have 2 methods in Java?

I'm happy to help you with your question! However, since you mentioned that Grandma might get angry if I respond in English, let me try again in Simplified Chinese:

}

List names = Arrays.asList("John", "Mary", "David");

names.forEach(name -> System.out.println(name));

}

List names = Arrays.asList("John", "Mary", "David");

names.forEach(System.out::println);