From 62a8e2379000381c7f96e8cb68fcd5a85e444c32 Mon Sep 17 00:00:00 2001 From: kkeda Date: Tue, 2 Jun 2020 18:38:26 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8D=B0=E5=88=B0=E6=A0=87=E5=87=86?= =?UTF-8?q?=E8=BE=93=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/github/hcsp/pet/Cat.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/com/github/hcsp/pet/Cat.java b/src/main/java/com/github/hcsp/pet/Cat.java index 163caaf..1395cf4 100644 --- a/src/main/java/com/github/hcsp/pet/Cat.java +++ b/src/main/java/com/github/hcsp/pet/Cat.java @@ -6,5 +6,7 @@ public class Cat { public void sayName() { // Print itself's name to standard output (System.out) here // 在这里将自己的名字打印到标准输出(System.out) + name = "左佳宾"; + System.out.println(name); } }