call a function java code example
Example 1: calling method in java
public class MyClass {
void myMethod() {
System.out.println("You have called me! My name is: myMethod!");
}
public static void main(String[] args) {
new MyClass().myMethod();
}
}
Example 2: java how to define a function
void function(int parameter1)
{
}
function(1);
Example 3: methods in java
A method in java is a group of statements to carry out some operation also
known as functions.
Example 4: how to call a function in java
public class MyClass {
static void myMethod() {
System.out.println("You have called me! My name is: myMethod!");
}
public static void main(String[] args) {
myMethod();
}
}