From 950637b2c3c953fed0756a7ff8e1862dcc3046a2 Mon Sep 17 00:00:00 2001 From: danny <12793148@qq.com> Date: Sat, 8 Mar 2025 19:36:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=9E=84=E9=80=A0=E5=87=BD?= =?UTF-8?q?=E6=95=B0=E8=B0=83=E7=94=A8=E7=9A=84=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 03:类与对象/01.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03:类与对象/01.md b/03:类与对象/01.md index 9417be7..5429309 100644 --- a/03:类与对象/01.md +++ b/03:类与对象/01.md @@ -154,7 +154,7 @@ class Circle { float r; public Circle() { - Circle(0, 0, 1); + this(0, 0, 1); } public Circle(float x, float y, float r) {