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中的class代表什麼Python
- other 1878
- python3 class的使用Python
- class中的arrow functionFunction
- 前端-JavaScript中的class前端JavaScript
- 如何理解es6中的class,以及class中的constructor函式Struct函式
- 帶你一步一步瞭解Python中的ClassPython
- JavaScript 和 TypeScript 中的 classJavaScriptTypeScript
- 認識JS中的ClassJS
- read by other session等待事件Session事件
- 深入理解 JavaScript 中的 classJavaScript
- read by other session 等待事件分析Session事件
- python3.5如何用classPython
- swift中Class和Struct的區別SwiftStruct
- JS 中的物件導向 prototype classJS物件
- TypeScript中,type、interface、class的區別TypeScript
- HTML中的tag、element、class、name、idHTML
- Typescript的interface、class和abstract classTypeScript
- 深入理解Swift中的Class和StructSwiftStruct
- Java中class的初始化順序Java
- self::class和static::class的區別
- ES6中的class物件和它的家人們物件
- PHP中的 抽象類(abstract class)和 介面(interface)PHP抽象
- 探究一下JDBC中的Class.forNameJDBC
- 再理解es6 中的 class super extends
- JavaScript中class繼承超乎你的想象《一》JavaScript繼承
- Java中獲取Class物件的三種方式Java物件
- element-ui中row-class-name的用法UI
- Java中的java.lang.Class API 詳解JavaAPI
- CSS中的class與id區別及用法CSS
- C++中的抽象基類(Abstract Base Class)C++抽象
- 28、Static Nested Class 和 Inner Class的不同。
- Swift中Class和Struct異同SwiftStruct
- 翻譯:《實用的Python程式設計》04_01_ClassPython程式設計
- 深入理解JS中的物件(三):class 的工作原理JS物件
- C# 中 Struct 和 Class 的區別總結C#Struct
- 單詞分類記憶_雜物(other things)
- MySQL資料庫出現 Ignoring query to other databaseMySql資料庫Database