91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Jython的操作符重載

發布時間:2021-07-14 16:13:24 來源:億速云 閱讀:137 作者:chen 欄目:編程語言

本篇內容介紹了“Jython的操作符重載”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

Jython的操作符重載

像 C++ 一樣,但是與 Java 語言不同,Jython 允許類重載許多標準語言操作符。這意味著類可以為語言操作符定義特定的意義。 Jython 還允許類模仿內置類型,如數字、序列和映射。

在下面的例子中,我們將使用標準 Jython UserList 類定義展示實際的操作符重載的例子.UserList 是一個包裝了一個列表的類,它的行為也像列表。它的大多數函數都 指派(傳遞)給其包含的列表,稱為data。在一個更實際的Jython操作符重載的例子中,會實現這些重載的函數以訪問其他一些存儲,如磁盤文件或者數據庫。

class UserList:      def __init__(self, initlist=None):          self.data = []          if initlist is not None:              if   type(initlist) == type(self.data):                  self.data[:] = initlist              elif isinstance(initlist, UserList):                  self.data[:] = initlist.data[:]              else:                  self.data = list(initlist)       def __cast(self, other):          if isinstance(other, UserList): return other.data          else:                           return other       #  `self`, repr(self)      def __repr__(self): return repr(self.data)       #  self < other      def __lt__(self, other): return self.data <  self.__cast(other)       #  self <= other      def __le__(self, other): return self.data <= self.__cast(other)       #  self == other      def __eq__(self, other): return self.data == self.__cast(other)       #  self != other, self <> other      def __ne__(self, other): return self.data != self.__cast(other)       #  self > other      def __gt__(self, other): return self.data >  self.__cast(other)       #  self >= other      def __ge__(self, other): return self.data >= self.__cast(other)       #  cmp(self, other)      def __cmp__(self, other):          raise RuntimeError, "UserList.__cmp__() is obsolete"      #  item in self      def __contains__(self, item): return item in self.data       #  len(self)      def __len__(self): return len(self.data)       #  self[i]      def __getitem__(self, i): return self.data[i]       #  self[i] = item      def __setitem__(self, i, item): self.data[i] = item       #  del self[i]      def __delitem__(self, i): del self.data[i]       #  self[i:j]      def __getslice__(self, i, j):          i = max(i, 0); j = max(j, 0)          return self.__class__(self.data[i:j])       #  self[i:j] = other      def __setslice__(self, i, j, other):          i = max(i, 0); j = max(j, 0)          if   isinstance(other, UserList):              self.data[i:j] = other.data          elif isinstance(other, type(self.data)):              self.data[i:j] = other          else:              self.data[i:j] = list(other)       #  del self[i:j]      def __delslice__(self, i, j):          i = max(i, 0); j = max(j, 0)          del self.data[i:j]       #  self + other   (join)      def __add__(self, other):          if   isinstance(other, UserList):              return self.__class__(self.data + other.data)          elif isinstance(other, type(self.data)):              return self.__class__(self.data + other)          else:              return self.__class__(self.data + list(other))       #  other + self   (join)      def __radd__(self, other):          if   isinstance(other, UserList):              return self.__class__(other.data + self.data)          elif isinstance(other, type(self.data)):              return self.__class__(other + self.data)          else:              return self.__class__(list(other) + self.data)       #  self += other  (join)      def __iadd__(self, other):          if   isinstance(other, UserList):              self.data += other.data          elif isinstance(other, type(self.data)):              self.data += other          else:              self.data += list(other)          return self      #  self * other   (repeat)      def __mul__(self, n):          return self.__class__(self.data*n)      __rmul__ = __mul__       #  self *= other  (repeat)      def __imul__(self, n):          self.data *= n          return self      # implement "List" functions below:       def append(self, item): self.data.append(item)       def insert(self, i, item): self.data.insert(i, item)       def pop(self, i=-1): return self.data.pop(i)       def remove(self, item): self.data.remove(item)       def count(self, item): return self.data.count(item)       def index(self, item): return self.data.index(item)       def reverse(self): self.data.reverse()       def sort(self, *args): apply(self.data.sort, args)       def extend(self, other):          if isinstance(other, UserList):              self.data.extend(other.data)          else:              self.data.extend(other)

“Jython的操作符重載”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

文化| 晴隆县| 南陵县| 阿坝| 甘泉县| 来宾市| 阿拉善右旗| 宁城县| 巍山| 湘乡市| 灌南县| 南溪县| 嘉兴市| 武山县| 三门县| 贺州市| 西安市| 扎鲁特旗| 宜宾县| 佛山市| 仁寿县| 镇坪县| 荣昌县| 道孚县| 广东省| 遂平县| 枣庄市| 正蓝旗| 正定县| 安多县| 永平县| 株洲市| 阿鲁科尔沁旗| 吉安市| 舞阳县| 阳城县| 昌宁县| 杨浦区| 大方县| 江都市| 焦作市|