StringBuffer的替换方法不起作用,因为它应该是

时间:2017-09-19 13:54:44

标签: java arrays replace stringbuffer

下面是一个代码,如果我遇到数组(arr)中的字母O,那么我必须用“。”替换相同的数组索引(newArr)。连同其相邻索引,即索引(i,j),(i + - 1,j)和(i,j + - 1)需要用“。”替换。

考虑数组(arr)的这个输入:

6 7  
.......

...O...

.......

.......

.......

.......

我应该使用数组输出什么输出(newArr):

OOO.OOO

OO...OO

OOO.OOO

OOOOOOO

OOOOOOO

OOOOOOO

我得到的输出:

OO...OO

OO...OO

OO...OO

OO...OO

OO...OO

OO...OO

PS:我知道如果我们在索引中得到O而导致ArrayIndexOutOfBound异常的极端情况。请考虑上面的例子。

import java.util.*;

public class Pattern{

public static void main(String[] args){

    Scanner sc= new Scanner(System.in);

    int R= sc.nextInt(); // Takes input for Rows

    int C= sc.nextInt(); // Takes input for Coloumn

    StringBuffer[] arr= new StringBuffer[R]; // Array of type StringBuffer to which input is given.

    StringBuffer[] newArr= new StringBuffer[R]; // Array of type StringBuffer which shall be filled with alphabet "O".

    for(int i=0; i<R; i++)

        arr[i]= new StringBuffer(sc.next()); // Input given to array arr.

    StringBuffer s= new StringBuffer(); // A new stringBuffer 

    for(int i=0; i<C; i++)

        s.append("O"); // appends the required amount of alphabet O for newArr.

    Arrays.fill(newArr, s); // fills the array with s(which contains only alphabet O).

    for(int i=0; i<R; i++){
        for(int j=0; j<C; j++){
             if(arr[i].charAt(j) == 'O'){
                            newArr[i].replace(j, j+1, "."); // replaces "O" with "." in newArr.
                            newArr[i].replace(j+1, j+2, "."); // replaces "O" with "." in newArr.
                            newArr[i].replace(j-1, j, "."); // replaces "O" with "." in newArr.
                            newArr[i+1].replace(j, j+1, "."); // replaces "O" with "." in newArr.
                            newArr[i-1].replace(j, j+1, "."); // replaces "O" with "." in newArr.
            }
        }
    }
    for(int i=0; i<R; i++)
        System.out.println(newArr[i]); // printing the new replaced array.
    }
}

1 个答案:

答案 0 :(得分:5)

诅咒你用Arrays.fill(Object[], Object)

填充newArr
  

将指定的Object引用分配给指定的Objects对象

的每个元素

您在每个单元格中放置相同的实例。所以你在这里使用StringBuffer的1个实例。这意味着如果您在一个单元格中执行更新,则每个单元格将具有相同的更新(仅使用一个对象)

您需要为每个单元格创建一个副本(在数组上循环自己)。

for(int i = 0; i < newArr.length; ++i){
    newArr[i] = new StringBuffer(s.toString());
}