日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

本文介紹了如何檢查userInput命令中的特定部分?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

我正在試著做一個游戲..當有人在控制臺中鍵入命令時,我希望命令中有[args]。

例如:

~修復[用戶名][運行狀況]

以下是示例代碼(如果您有答案,請參考此代碼):

import java.util.Scanner;
class StackOverflowExample {
  public static void main(String[] args) {
    System.out.println("Healing Command: ~heal [username] [health]");
    int player1HP = 0;
    Scanner userInteraction = new Scanner(System.in);
    String userInput = userInteraction.nextLine();
    if (userInput.equals("~heal " /**+ username + num**/) /**How do I make it so that a number(the amount to heal) and a username(player username) can be inputted after?**/){
      player1HP += 0; /**I need the number that the user inputs to be added to player1HP**/
    }
    System.out.println("player1/**I want this to be the username value**/ is at: " + player1HP/**I want this to be the hp value + player1HP**/ + " hp.");//I want this command to print out "ProGamer is at: 3 hp."
    
  }
}

輸出:

如何獲取"username"和"Health"的值?

推薦答案

可以使用regular expression確保輸入有效。

然后可以調用方法split將命令分成單獨的單詞。

import java.util.Scanner;

public class StackOverflowExample {
    public static void main(String[] args) {
        System.out.println("Healing Command: ~heal [username] [health]");
        int player1HP = 0;
        Scanner userInteraction = new Scanner(System.in);
        String userInput = userInteraction.nextLine();
        if (userInput.matches("^~heal [^ ]+ \d+$")) {
            String[] parts = userInput.split(" ");
            int health = Integer.parseInt(parts[2]);
            player1HP += health;
            String player = parts[1];
            System.out.printf("%s is at: %d hp.%n", player, player1HP);
        }
    }
}

正則表達式檢查輸入的命令是否以~heal開頭,后跟一個空格,后跟一個或多個不是空格的字符,然后是另一個空格,后跟一個或多個數字。

然后在空格上拆分輸入的命令,這將返回一個三元數組,其中第一個數組元素是命令(即~heal),第二個元素是玩家姓名,最后一個元素是生命值。

這篇關于如何檢查userInput命令中的特定部分?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,

分享到:
標簽:userInput 命令 檢查 特定
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定