“tablica string” Kod odpowiedzi

tablica string

String[] str = new String[] {"hi","hello"};
    StringBuilder[] sbs = new StringBuilder[str.length];
    Arrays.setAll(sbs, i -> new StringBuilder(str[i]));
Xerothermic Xenomorph

tablica string

String[] str = new String[] {"hi","hello"};
StringBuilder[] sbs=Arrays.stream(str)
                          .map(s->new StringBuilder(s))
                          //.collect(Collectors.toList()) // not needed, see comments
                                                          // of @RealSkeptic and @Holger
                          .toArray(StringBuilder[]::new);
Xerothermic Xenomorph

Odpowiedzi podobne do “tablica string”

Pytania podobne do “tablica string”

Więcej pokrewnych odpowiedzi na “tablica string” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu