This Blog is Under Construction

Friday, December 23, 2016

How to pass the current object


Circle নামে একটি class কল্পনা করি যার doSomething নামে একটি method আছে, যা কিনা Fun type এর object receive করে।
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
class Circle {
     void doSomething(Fun c){
      System.out.println(c);
     }
}

public class Fun{
 void test(){
     Circle c1 = new Circle();
     c1.doSomething(this);//pass the current object(Fun)
 }
 
 public static void main(String[] args){
  new Fun().test();
 }
}

No comments:

Post a Comment