Код: Выделить всё
1)
public String greet(){
return "hello";
}
2)
public String[] greetings(){
return new String[]{"hello","hi","hey"};
}
Подробнее здесь: https://stackoverflow.com/questions/786 ... ay-in-java
Код: Выделить всё
1)
public String greet(){
return "hello";
}
2)
public String[] greetings(){
return new String[]{"hello","hi","hey"};
}