Мне нужно получить переменную inString
в другом классе. Как я могу это сделать?
public class main {
public static StringBuffer inString;
public static void main(String[] args) {
inString = new StringBuffer("Our aim is to make a 15 realistic game, where grinding powerlines and doing a tailwhip isn't easy, like in the real world. A game in which you will feel like you're actual riding. A game in which creativity and beauty are combined. ");
inString = new StringBuffer(inString.toString().replaceAll(" +", " "));
}
}
Поэтому я пытаюсь использовать System.out.println(main.inString);
в своем Textcl.class, но получаю null
.