/** * */ /** * @author DELL * Project Name: Java_learn * Class Name: TestArrays * date: 2019年8月19日{time} */ public class TestArrays { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub String [] islands = new String[4]; islands[0] = "Bermude"; islands[1] = "Fiji"; islands[2] = "Azores"; islands[3] = "Cozumel"; int [] index = new int[4]; index[0] = 1; index[1] = 3; index[2] = 0; index[3] = 2; int y = 0; int ref; while (y < 4) { ref = index[y]; System.out.print("island = "); System.out.println(islands[ref]); y = y + 1; } } }