Skip to main content

Methods

Methods | Java: Methods are behavior of class. 

Syntax:                                class class_name {
                                                            void/int method_name(par1,par2,...,parn)
                                                            {
                                                                          // statements...
                                                            }
                                             }

Here is the Code:

  1. import java.io.*;
  2. class Main {
  3. public static void main (String[] args) {
  4. A a = new A();
  5. a.setX(3);
  6. System.out.println(a.getX());
  7. }
  8. }
  9. class A 
  10. {
  11.     int x;
  12.     void setX(int x)
  13.     {
  14.         this.x = x;
  15.     }
  16.     int getX()
  17.     {
  18.         return this.x;
  19.     }
  20. }

Output:
3

Here is the Video: