Java是一種計算機編程語言,其程序中的語句可以按照指定的順序依次執行,也可以倒序執行。以下是Java中順序執行和倒序執行的示例:
//順序執行 public class Main { public static void main(String[] args) { System.out.println("先執行我"); System.out.println("再執行我"); System.out.println("最后執行我"); } }
以上代碼中,先輸出的是“先執行我”,然后是“再執行我”,最后是“最后執行我”,即依照代碼中從上到下的順序依次執行。
//倒序執行 public class Main { public static void main(String[] args) { System.out.println("最后執行我"); System.out.println("再執行我"); System.out.println("先執行我"); } }
以上代碼中,先輸出的是“最后執行我”,然后是“再執行我”,最后是“先執行我”,即代碼中先定義的語句反而后執行了。