Update 08.面向对象编程基础.md

`"` to `:`
pull/515/head
Kuiliang Zhang 2020-03-24 12:23:36 +08:00 committed by GitHub
parent 3351f019ed
commit 634e3843b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -203,7 +203,7 @@ class Point(object):
"""移动到指定位置 """移动到指定位置
:param x: 新的横坐标 :param x: 新的横坐标
"param y: 新的纵坐标 :param y: 新的纵坐标
""" """
self.x = x self.x = x
self.y = y self.y = y
@ -212,7 +212,7 @@ class Point(object):
"""移动指定的增量 """移动指定的增量
:param dx: 横坐标的增量 :param dx: 横坐标的增量
"param dy: 纵坐标的增量 :param dy: 纵坐标的增量
""" """
self.x += dx self.x += dx
self.y += dy self.y += dy
@ -244,4 +244,4 @@ if __name__ == '__main__':
main() main()
``` ```
> **说明:** 本章中的插图来自于Grady Booch等著作的[《面向对象分析与设计》](https://item.jd.com/20476561918.html)一书,该书是讲解面向对象编程的经典著作,有兴趣的读者可以购买和阅读这本书来了解更多的面向对象的相关知识。 > **说明:** 本章中的插图来自于Grady Booch等著作的[《面向对象分析与设计》](https://item.jd.com/20476561918.html)一书,该书是讲解面向对象编程的经典著作,有兴趣的读者可以购买和阅读这本书来了解更多的面向对象的相关知识。