Design Patterns : Elements of Reusable Object-Oriented Software


Design Patterns: Elements of Reusable Object-Oriented Software



Download 4,06 Mb.
Pdf ko'rish
bet276/288
Sana07.04.2022
Hajmi4,06 Mb.
#535140
1   ...   272   273   274   275   276   277   278   279   ...   288
Bog'liq
GOF Design Patterns

Design Patterns: Elements of Reusable Object-Oriented Software 
409 
Appendix C: Foundation Classes 
This appendix documents the foundation classes we use in the C++sample code of 
several design patterns. We've intentionally kept the classes simple and minimal. 
We describe the following classes: 

List
, an ordered list of objects. 

Iterator
,the interface for accessing an aggregate's objects in a sequence. 

ListIterator
,an iterator for traversing a List. 

Point
,a two-dimensional point. 

Rect
, an axis-aligned rectangle. 
Some newer C++ standard types may not be available on allcompilers. In particular, 
if your compiler doesn't definebool, then define it manually as 
typedef int bool
const int true = 1; 
const int false = 0; 
List 
The List class template provides a basic container forstoring an ordered list 
of objects. List stores elements byvalue, which means it works for built-in types 
as well as classinstances. For example, List declares a list ofints. But most 
of the patterns use List tostore pointers to objects, as in List. That wayList 
can be used for heterogeneous lists. 
For convenience, List also provides synonyms for stackoperations, which make code 
that uses List for stacks moreexplicit without defining another class. 
template  
class List { 
public: 
List(long size = DEFAULT_LIST_CAPACITY); 
List(List&); 
~List(); 
List& operator=(const List&); 
long Count() const; 
Item& Get(long index) const; 
Item& First() const; 
Item& Last() const; 
bool Includes(const Item&) const; 


Design Patterns: Elements of Reusable Object-Oriented Software 
410 
void Append(const Item&); 
void Prepend(const Item&); 
void Remove(const Item&); 
void RemoveLast(); 
void RemoveFirst(); 
void RemoveAll(); 
Item& Top() const; 
void Push(const Item&); 
Item& Pop(); 
}; 
The following sections describe these operations in greater detail. 

Download 4,06 Mb.

Do'stlaringiz bilan baham:
1   ...   272   273   274   275   276   277   278   279   ...   288




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish