Python class中的other
定義了一個Point類,類中有計算兩點距離的方法,self表示本類,other表示另一個類,可以直接使用屬性。
other引數其他用法 https://www.cnblogs.com/hujingnb/p/10246385.html
class Point(object):
def __init__(self, x=0, y=0):
self.x = x
self.y = y
def test(self, other):
print('this %f' % (sqrt((self.x - other.x)**2 +
(self.y - other.y)**2)))
if __name__ == "__main__":
a = Point(0, 0)
b = Point(3, 4)
a.test(b)
相關文章
- Python中的ClassPython
- python中的class代表什麼Python
- python的__class__()Python
- class中的arrow functionFunction
- 前端-JavaScript中的class前端JavaScript
- PHP 中的類(class)PHP
- python3 class的使用Python
- 如何理解es6中的class,以及class中的constructor函式Struct函式
- 認識JS中的ClassJS
- JavaScript 和 TypeScript 中的 classJavaScriptTypeScript
- 帶你一步一步瞭解Python中的ClassPython
- Python list of class attributes - PythonPython
- 深入理解 JavaScript 中的 classJavaScript
- Bootstrap中的兩個容器classboot
- JS 中的物件導向 prototype classJS物件
- swift中Class和Struct的區別SwiftStruct
- angularjs中ng-class的使用AngularJS
- JS中class和id的區別JS
- 更改jar包中的一個classJAR
- TypeScript中,type、interface、class的區別TypeScript
- Runloop + runtime + otherOOP
- python3.5如何用classPython
- Jquery獲取css中id和class樣式的動作-#id和.classjQueryCSS
- 深入理解Swift中的Class和StructSwiftStruct
- C++中 struct 和 class 的區別C++Struct
- Java中class的初始化順序Java
- C++中struct 和 class的區別C++Struct
- PHP函式庫(other)PHP函式
- Other SGA Initialization Parameters (96)
- Python機器學習筆記——One Class SVMPython機器學習筆記
- Python Class self __init__筆記Python筆記
- Typescript的interface、class和abstract classTypeScript
- ES6中的class物件和它的家人們物件
- element-ui中row-class-name的用法UI
- 探究一下JDBC中的Class.forNameJDBC
- Java中的java.lang.Class API 詳解JavaAPI
- PHP中的 抽象類(abstract class)和 介面(interface)PHP抽象
- CSS中的class與id區別及用法CSS