xxxxxxxxxx
accessmodifier returnType funcName(param1, param2){
// your java code here
}
xxxxxxxxxx
public class Main
{
static void function(){
System.out.println("I am a function!");
}
public static void main(String[] args) {
function();
}
}
xxxxxxxxxx
//declare a function like this:
void function(int parameter1)
{
//function body
}
//call the function like this:
function(1);
xxxxxxxxxx
public class MyClass {
static void myMethod() {
System.out.println("You have called me! My name is: myMethod!");
}
public static void main(String[] args) {
myMethod();
}
}
xxxxxxxxxx
public class Main
{
static void function(){
System.out.println("I am a function!");
}
public static void main(String[] args) {
function();
}
}
accessmodifier returnType funcName(param1, param2){
// your java code here
}