-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path@property_getter_setter_in_python.py
149 lines (96 loc) · 3.53 KB
/
@property_getter_setter_in_python.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# You will learn about Python @property; pythonic way to use getters and setters.
# Python has a great concept called property which makes the life of an object oriented programmer much simpler.
class Celsius_dec:
def __init__(self, temperature = 0):
self._temperature = temperature
def to_fahrenheit(self):
return (self.temperature * 1.8) + 32
# We can further go on and not define names get_temperature and set_temperature as they are unnecessary and pollute
# the class namespace.
# @property
# def property(fun):
# def getter_fn:
# print("Getter!")
# fun()
# return inner_fn
# similar to temperature = property(temperature)
@property
def temperature(self):
print("Getting value")
return self._temperature
# We can further go on and not define names get_temperature and set_temperature as they are unnecessary and pollute
# the class namespace.
# The next step would be to extend this property with a setter and a deleter. And this happens with the appropriate
# methods:
# @temperature.setter
@temperature.setter
def temperature(self, value):
if value < 273:
raise ValueError("Temperature below 273 is not possible")
print("Setting value")
self._temperature = value
# C = Celsius_dec()
# C.temperature = 24
# print C.temperature
# class Celsius:
# def __init__(self, temperature = 0):
# self._temperature = temperature
# def to_fahrenheit(self):
# return (self.temperature * 1.8) + 32
# def get_temperature(self):
# print("Getting value")
# return self._temperature
# def set_temperature(self, value):
# if value < -273:
# raise ValueError("Temperature below -273 is not possible")
# print("Setting value")
# self._temperature = value
# temperature = property(get_temperature,set_temperature)
# The property() function returns a special descriptor object:
# property().getter
# <built-in method getter of property object at 0x10ff07998>
# property().setter
# <built-in method setter of property object at 0x10ff07940>
# property().deleter
# <built-in method deleter of property object at 0x10ff07998>
# class_instance = Celsius()
# instead of writing class_instance.get_temperature()
# print class_instance.temperature
# print class_instance.temperature
# print class_instance.get_temperature()
# The big problem with the above update is that, all the clients who implemented our previous class in their program
# have to modify their code from obj.temperature to obj.get_temperature() and all assignments like
# obj.temperature = val to obj.set_temperature(val).
# c = Celsius()
# c.temperature = 45
# c.set_temperature(-294)
# print c.get_temperature()
# class C():
# def __init__(self, y = 0):
# self._x = y
# def getx(self):
# return self._x
# def setx(self, value):
# self._x = value
# def delx(self):
# del self._x
# x = property(getx, setx, delx, "I'm the 'x' property.")
# print class_instance.getx()
# class C():
# def __init__(self):
# self._x = None
# @property
# def x(self):
# """I'm the 'x' property."""
# return self._x
# @x.setter
# def x(self, value):
# self._x = value
# @x.deleter
# def x(self):
# del self._x
# class_instance = C()
# class_instance.x()
# USE CASE
# 1 - @property depicts that it's the getter, right can be extended to setter.
# 2 - makes the function as a property that otherwise it should remain as fuction.