Method Signature in Java:
Firstly need to know what is java method? why to use in java?
Java method refers, a method which is a block of code which only runs when it is called. Here data can pass as parameters into a method. Methods are used to perform certain actions, and they are also known as functions.
Use:
This is mainly use to frequent use a same function by call that is reuse a function.
To create a method must be declared within a class. It is followed by parentheses () with the name of the method. Java provides some pre-defined methods, such as System.out.println(), though can also create own user define methods to perform secific actions:
Example
Create a method inside Tree:
public class Tree{ static void treeMethod() { // code to be executed } }
Example Explained
- treeMethod() is the name of the method.
- static means that the method belongs to the Main class and not an object of the Tree class.
- void means that this method does not have a return value.
Now with another example brief it shortly:
Next need to know what is method signature and it’s declaration. It is refers to a method-name to parameter-list before body part of a java class.
An example of method declaration:
public double showValue(int types,double area) { //to do }
So in method declaration uses components are:
modifiers: It controls the access level,
Modifier | Description |
public | The public use in code which mean it is accessible for all classes. |
private | This Modifier refers the code is only accessible within the declared class |
default | The code is only accessible in the same package. This is used when don’t want to specify a modifier. |
protected | The code is accessible in the same package and subclasses. |
return type: A return type may be a primitive type. For instance int, float, double, a reference type or void type(returns nothing),
method name: A method name should follow the camel case. First letter of the first word should be small and the first letters of the remaining words should be capital,
parameter list in parenthesis: Parameters act as variables inside the method.
public class Main { static void mMethod(String first_name) { System.out.println(first_name ); } public static void main(String[] args) { mMethod("Harun"); mMethod("Roshid"); } }
Output:
Harun
Roshid
exception list: Java Built-in exceptions are suitable to explain certain error situations. It also supports users to define their own exceptions.,
- ArithmeticException
This exception is thrown in code when an exceptional condition has occurred in an arithmetic operation. - ArrayIndexOutOfBoundsException
It is thrown to indicate that an array has been accessed either negative or greater than or equal to the size of the array.
the method body: The method body is where all of the action of a method takes place,
enclosed between braces: Start to end body of a Java class .
Among these components(six total) only two comprises the method signature.
- a method name,
- parameter list in parenthesis
Following the example the method signature :
showValue( int types, double area)
That means, method signature is part of the method declaration , combination of the method name and the parameter list. Overloading method signature get emphasis to its ability to write methods that have the same name but accept different parameters.
Through the method signatures , Java compiler can discern the difference between the methods at compilation time.
Method Signature Examples:
public double showValue(int types,double area,float result) {
//to do
}
The method signature in the above example is showValue (int, double, float)
public double showValue(String name) { //to do }
The Java compiler will let us add another method like the above example because its method signature is different showValue(String) in this case.
To Call a Method :
we discuss before in Java, write the method’s name followed by two parentheses () and a semicolon;
In the following example, treeMethod() is used to print a text (the action), when it is called:
Example
Inside main, call the treeMethod() method:
public class Tree { static void treeMethod() { System.out.println("hello executed treeMethod!"); } public static void main(String[] args) { treeMethod(); } }
// Outputs “hello executed treeMethod!”
The method can be called multiple time. Above code main method rewrite for this code:
public static void main(String[] args) { treeMethod(); treeMethod(); treeMethod(); } }
// Here treeMethod() call three times and everytime shows same output
Java Method Parameters and Arguments:
Value can be passed to methods as parameter. Parameters act as variables inside the method.
Parameters are specified after the method name, inside the parentheses. You can add as many parameters as you want, just separate them with a comma.
public class Tree { static void myMethod(String languageName) { System.out.println(languageName+ " language"); } public static void main(String[] args) { myMethod("Python"); myMethod("C"); myMethod("C++"); } }
// Python language
// C language
// C++ language
Java can support Multiple Parameters. You can have as many parameters as you like:
Example
public class Tree{ static void myMethod(String languageName, (String version) { System.out.println(languageName + " is a" + age); } public static void main(String[] args) { myMethod("Python", "language"); myMethod("C", "language"); myMethod("C++", "language"); } }
// Python is a language
// C is a language
// C++ is a language
Draftsbook is a learning base blog. The blog share Article series based on Subject. For example:
-
- JAVA : JAVA is a object-oriented programming(OOP) language. This language classes and objects are the two main aspects of OOP. The blog content discuss below principles of OOP:
- Data Structure: Data structure refers a several way of organizing data in a computer system.
- Android : Android software development apps can be written using Kotlin, Java, and C++ languages” using the Android software development kit (SDK). This blog contains android feature Navigation drawer implementation and its usage are mention.
- IELTS : IELTS Four module with strategies are written hereby
5.Problem Solving : Problem solution on various online platform tips and solution are given here following platform.