Guest User

Untitled

a guest
Aug 16th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. package durgesh.assignment.data;
  2.  
  3. public class data {
  4. int a;
  5. char ch;
  6.  
  7. public data(int c,char d){
  8. a=c;
  9. ch=d;
  10. }
  11.  
  12. public void get(){
  13. System.out.println(a+" "+ch);
  14. }
  15.  
  16. public void wo_ini(){
  17. int c;// this statement will show compilation error as local uninitialised method variable do not get any value.
  18. int d;// this statement will show compilation error as local uninitialised method variable do not get any value.
  19. System.out.println(c+ " " + d);
  20. }
  21. }
Add Comment
Please, Sign In to add comment