Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のような文字列配列があるとします。
String[] str = {"2","4","5"};
ここで、各要素から 1 を減算します。つまり、文字列を次のようにします。
str = {"1","3","4"};
どうすればいいのですか?整数配列に変換する以外に方法はありますか?