DesignPattern/17.IteratorPattern/2.Code/Aggregate.cpp

21 lines
430 B
C++
Raw Permalink Normal View History

2019-11-03 06:20:17 +00:00
#include "Iterator.h"
Television::Television(){}
Television::Television(vector<string> iChannelList){
this->channelList = iChannelList;
}
Iterator* Television::createIterator(){
RemoteControl *it = new RemoteControl();
it->setTV(this);
return (Iterator*)it;
}
int Television::getTotalChannelNum(){
return channelList.size();
}
void Television::play(int i){
2021-10-28 15:15:51 +00:00
printf("现在播放:%s……\n", channelList[i].c_str());
2019-11-03 06:20:17 +00:00
}