配列を反復処理して文字列をlongに変換しようとしますか?これは、以下の例である:ストリングをlongに変換する
String[] myArray = ["123", "122 Street", "2334"];
// I'm trying to loop through an array like this and cast to a long
for(String s: myArray) {
try {
long newValue = Long.valueOf(s);
// How would I swap the old values to their new long type in the
// myArray?
} catch(Exception error) { }
}
あなたは何を期待しますか? – alfasin
"Street"が入っているので、私はそれを変換するとは思わないでしょう。この場合、私はそれを捕まえて継続しないでしょうか? – craz1001
long型をString型の配列に格納することはできません。そのような配列には文字列しか含めることができません。 –