Files
python3-cookbook/cookbook/c08/p04_slots.py

17 lines
278 B
Python
Raw Normal View History

2015-01-27 16:36:18 +08:00
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
"""
Topic: 使用slots来减少内存占用
Desc :
"""
class Date:
__slots__ = ['year', 'month', 'day']
def __init__(self, year, month, day):
self.year = year
self.month = month
self.day = day