Guest User

Untitled

a guest
Jan 18th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public static String crdName;
  2.  
  3. CarData car_data = new CarData();
  4.  
  5. car_data.crdName = 234;
  6.  
  7. int CrN = car_data.crdName;
  8.  
  9. public static String crdName;
  10.  
  11. car_data.crdName = 234;
  12.  
  13. CarData.crdName = "234";
  14.  
  15. int CrN = car_data.crdName;
  16.  
  17. int CrN = Integer.valueOf(CarData.crdName);
Add Comment
Please, Sign In to add comment