From 6e39df7b1ade4103e675cc33e262310802322959 Mon Sep 17 00:00:00 2001 From: 903875816 <604150318@qq.com> Date: Wed, 11 Sep 2019 01:40:47 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B5=8C=E5=A5=97=E8=B0=83=E7=94=A8=E5=A4=9A?= =?UTF-8?q?=E4=B8=AA=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/github/hcsp/Main.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/com/github/hcsp/Main.java b/src/main/java/com/github/hcsp/Main.java index d9a2b77..0ee2e94 100644 --- a/src/main/java/com/github/hcsp/Main.java +++ b/src/main/java/com/github/hcsp/Main.java @@ -4,24 +4,28 @@ public class Main { public static void main(String[] args) { // invoke method a() here // 在这里调用方法a() + a(); } public static void a() { System.out.println("a"); // invoke method b() here // 在这里调用方法b() + b(); } public static void b() { System.out.println("b"); // invoke method c() here // 在这里调用方法c() + c(); } public static void c() { System.out.println("c"); // invoke method d() here // 在这里调用方法d() + d(); } public static void d() {