错误

% javac  StringTest.java 
StringTest.java:4: variable errorSoon might not have been initialized
        errorSoon[0] = "Error, why?";

Code

public class StringTest {
        public static void main(String[] args) {
                String[] errorSoon;
                errorSoon[0] = "Error, why?";
        }
}

当前回答

String[] errorSoon = new String[n];

n是它需要容纳的字符串数。

你可以在声明中这样做,或者在以后不使用String[]的情况下这样做,只要是在你尝试使用它们之前。

其他回答

字符串声明:

String str;

字符串初始化

String[] str=new String[3];//if we give string[2] will get Exception insted
str[0]="Tej";
str[1]="Good";
str[2]="Girl";

String str="SSN"; 

我们可以在String中获取单个字符:

char chr=str.charAt(0);`//output will be S`

如果我想像这样获取单个字符的Ascii值:

System.out.println((int)chr); //output:83

现在我想转换Ascii值为字符/符号。

int n=(int)chr;
System.out.println((char)n);//output:S
String[] errorSoon = { "foo", "bar" };

——或——

String[] errorSoon = new String[2];
errorSoon[0] = "foo";
errorSoon[1] = "bar";
String[] args = new String[]{"firstarg", "secondarg", "thirdarg"};

在Java 8中,我们还可以使用流。

String[] strings = Stream.of("First", "Second", "Third").toArray(String[]::new);

如果我们已经有一个字符串列表(stringList),那么我们可以收集到字符串数组为:

String[] strings = stringList.stream().toArray(String[]::new);
String[] errorSoon = new String[n];

n是它需要容纳的字符串数。

你可以在声明中这样做,或者在以后不使用String[]的情况下这样做,只要是在你尝试使用它们之前。