本文主要是介绍python定义类中特殊函数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
点击查看代码
# # 基于可迭代对象&生成器 实现:自定义输出被2整除的数
#
# class Xrange(object):
# def __init__(self, max_num):
# self.max_num = max_num
#
# def __iter__(self):
# counter = 0
# while counter < self.max_num:
# yield counter
# counter += 2
#
#
# obj = Xrange(100)
# for item in obj:
# print(item)
# 上下文管理
# class Foo(object):
#
# def __enter__(self):
# print("进入了")
# return 666
#
# def __exit__(self, exc_type, exc_val, exc_tb):
# print("出去了")
#
#
# obj = Foo()
# with obj as data:
# print(data)
# 生成字典
# class Foo(object):
# def __init__(self, name, age):
# self.name = name
# self.age = age
#
#
# obj = Foo("武沛齐", 19)
# print(obj.__dict__)
# 根据索引值取值
# class Foo(object):
#
# def __getitem__(self, item):
# pass
#
# def __setitem__(self, key, value):
# pass
#
# def __delitem__(self, key):
# pass
#
#
# obj = Foo("武沛齐", 19)
#
# obj["x1"]
# obj['x2'] = 123
# del obj['x3']
这篇关于python定义类中特殊函数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!