Methods

Lesson 13
Author : Afrixi
Last Updated : October, 2017


Java - Programming Language
This course covers the basics of programming in Java. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!

public static void sayHi(){ System.out.println("Hello"); }

A parameter is a special variable that a Method will use to perform it’s task in a way that is more specific to the needs of the caller. An argument is the value the caller gives to the Method which will get stored inside the parameter variable.

public static void sayHi(String name, int age){ System.out.println("Hello " + name + " you are " + age); }