- Java Tutorial
- Java Introduction
- Java Features
- Java Simple Program
- JVM, JDK and JRE
- Java Syntax
- Java Comments
- Java Keywords
- Java Variables
- Java Literals
- Java Separators
- Java Datatypes
- Java Operators
- Java Statements
- Java Strings
- Java Arrays
- Control Statement
- Java If
- Java If-else
- Java If-else-if
- Java Nested If
- Java Switch
- Iteration Statement
- Java For Loop
- Java For Each Loop
- Java While Loop
- Java Do While Loop
- Java Nested Loop
- Java Break/Continue
- Java Methods
- Java Methods
- Java Method Parameters
- Java Method Overloading
- Java Recursion
- Java OOPS
- Java OOPs
- Java Classes/Objects
- Java Inheritance
- Java Polymorphism
- Java Encapsulation
- Java Abstraction
- Java Modifiers
- Java Constructors
- Java Interface
- Java static keyword
- Java this keyword
- Java File Handling
- Java File
- Java Create File
- Java Read/Write File
- Java Delete File
- Java Program To
- Add Two Numbers
- Even or Odd Numbers
- Reverse a String
- Swap Two Numbers
- Prime Number
- Fibonacci Sequence
- Palindrome Strings
- Java Reference
- Java String Methods
- Java Math Methods
Java Methods
In Java, a method is a block of code that performs a specific task and can be invoked or called from other parts of the program. Here's a concise overview:
Syntax:
returnType methodName(parameter1, parameter2, ...) {
// Method body
// Code to execute
return result; // Optional return statement
}
returnType:
- Specifies the data type of the value that the method returns.
- Use void if the method does not return any value.
methodName:
- The name of the method, which should be meaningful and descriptive.
parameters:
- Optional inputs to the method, specified as a list of comma-separated variables.
Method Example:
- Example of a method that adds two numbers:
int add(int num1, int num2) {
return num1 + num2;
}
Calling a Method:
- Methods are called using their name followed by parentheses, optionally passing arguments.
- Example:
int sum = add(5, 3);
Void Methods:
- Methods that do not return a value are declared with void as the returnType.
- Example:
void greet() {
System.out.println("Hello, world!");
}
Summary
Java methods provide a way to organize code into reusable blocks, promoting modularity and code reusability. Understanding how to define and call methods is fundamental for structuring Java programs and implementing modular designs.