chiamata di metodo di un oggetto e di memorizzare il valore restituito nella variabile stringa. Questo presuppone che il metodo " func " restituisce un valore stringa :
FakeObject f = new FakeObject ( ) ; String s = new String ( ) ; s = f.func ();
2
dichiarare un array di stringhe :
String [ ] strings = new String [ 10 ] ; //array di 10 stringhe
3
dividere la stringa " s " , in sotto- stringhe , delimitate dalle virgole nella stringa "s" :
stringhe
= S.SPLIT ( "," ) ;
4
Format per colonna :
per (String x : stringhe) { System.out.println ( x );}
Programmazione © www.354353.com