For example: ``` class A{ int a; int b; A(int a,int b) { this.a = a; this.b = b; } int func(){ return this.a+this.b; } } ```
For example: