Skip to content

Commit

Permalink
Update class.md
Browse files Browse the repository at this point in the history
  • Loading branch information
AnonymousAAArdvark authored May 21, 2023
1 parent 32b5624 commit 21b3195
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/zh-cn/class.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
方法是在类中声明并为属于该类的对象添加功能的函数。
```c
类 树 「
功能 打印()「
打印()「
系统。打印行("我是一个树!"
Expand All @@ -25,7 +25,7 @@
与常规函数一样,您可以向方法添加参数。
```c
类 树 「
功能 打印(形容)「
打印(形容)「
系统。打印行("我是一个" + 形容 + "树!"
Expand Down Expand Up @@ -101,7 +101,7 @@
要指定父类,请使用`````` 运算符。
```c
类 树 「
功能 打印()「
打印()「
系统。打印行("我是一个树!"
Expand All @@ -123,7 +123,7 @@

类 橡木:树「
功能 打印()「
打印()「
超。打印("橡木"
Expand Down

0 comments on commit 21b3195

Please sign in to comment.