25
한 줄이 다른 줄을 바꾸지 않는 방법으로 두 줄을 어떻게 바꿀 수 있습니까?
다음 코드가 있다고 가정 해 봅시다. String word1 = "bar"; String word2 = "foo"; String story = "Once upon a time, there was a foo and a bar." story = story.replace("foo", word1); story = story.replace("bar", word2); 이 코드를 실행 한 후,의 값이 story될 것입니다"Once upon a time, there was a …