Guest User

Untitled

a guest
Jan 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. public class AirCondition {
  2. public float ghostPower = 1.414;
  3. public void start() {
  4. doCoolWithGhostPower(this.ghostPower);
  5. }
  6. }
  7.  
  8. public static void main(String argv[]) {
  9.  
  10. AirCondition air = new AirCondition();
  11. // เร่งการทำงานของระบบแอร์ที่เป็นแบบดูความร้อน
  12. air.compressorPower = 100;
  13. air.start();
  14. // Error ไปสิจ๊ะ
  15. }
Add Comment
Please, Sign In to add comment