本文整理汇总了C++中TaxTable::getTaxList方法的典型用法代码示例。如果您正苦于以下问题:C++ TaxTable::getTaxList方法的具体用法?C++ TaxTable::getTaxList怎么用?C++ TaxTable::getTaxList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TaxTable
的用法示例。
在下文中一共展示了TaxTable::getTaxList方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main()
{
TaxTable *tax = TaxTable::getTaxTable();
map<string, float> &taxlist = tax->getTaxList();
vector<string> vs;
string s;
while (getline(cin, s)) {
vs.push_back(s);
}
vector<InputData> iputs;
for (int i = 0; i < vs.size(); i++)
{
InputData idatas;
int l = vs[i].find_first_of(" ");
int r = vs[i].find_last_of(" ");
string ns = vs[i].substr(0, l);
idatas.describe = vs[i].substr(l + 1, r - l - 1);
string fs = vs[i].substr(r+1, vs[i].length()-1-r);
idatas.n = atoi(ns.c_str());
idatas.price = atof(fs.c_str());
iputs.push_back(idatas);
}
Barkets barks;
NonTaxProduct *book = new NonTaxProduct();
book->setName("book");
book->setPrice(12.49);
BaseTaxOnly *musicCD = new BaseTaxOnly();
musicCD->setName("musicCD");
musicCD->setPrice(14.99);
NonTaxProduct *chocolateBar = new NonTaxProduct();
chocolateBar->setName("chocolateBar");
chocolateBar->setPrice(0.85);
barks.computePrice(book, 1, taxlist);
barks.computePrice(musicCD, 1, taxlist);
barks.computePrice(chocolateBar, 1, taxlist);
barks.outPutBarket(iputs);
system("pause");
return 0;
}