Что -то вроде следующего: < /p>
ref Пример: < /p>
void changeString(ref String str) {
str = "def";
}
void main() {
String abc = "abc";
changeString(ref abc);
System.out.println(abc); //prints "def"
}
< /code>
out Пример: < /p>
void changeString(out String str) {
str = "def";
}
void main() {
String abc;
changeString(out abc);
System.out.println(abc); //prints "def"
}
Подробнее здесь: https://stackoverflow.com/questions/280 ... t-keywords