⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dotcom.java

📁 HeadFirstCode系列图书里的源代码
💻 JAVA
字号:
// Tiger version

import java.util.*;

public class DotCom {

   private ArrayList<String> locationCells;  
   private String name;

   public void setLocationCells(ArrayList<String> loc) {
      locationCells = loc;
   }

      public void setName(String n) {
      name = n;
  }

   public String checkYourself(String userInput) { 
      String result = "miss";
      int index = locationCells.indexOf(userInput);      
      if (index >= 0) {                              
          locationCells.remove(index);
         
         if (locationCells.isEmpty()) {
             result = "kill";
             System.out.println("Ouch! You sunk " + name + "  : ( ");
         } else {
             result = "hit";
         }  // close if                       
      } // close if            
       return result;

   } // close method
} // close class
            
     
   
   

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -