- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我有下一个程序,我有 4 节课:Cake、PiesandSaltyPastries、IceCreamandDesserts 以及所有这些类的基类:C面包店。我需要使一个数组包含从 CBakery 继承的类,例如我试过:
CBakery *bought[6]; //Bought food
Cake cake;
cake.InputCake(); //To fill it with input
bought[1] = new Cake;
bought[1] = cake;
但是它不起作用,这里是完整的代码,如果你能帮助我,我将不胜感激。
编辑:
#include "stdafx.h"
#include <iostream>
using namespace std;
class CBakery
{
public:
virtual void f(void);
virtual void Input()
{
int freeze;
cout << "Enter Product Name, Type, Price, if it is freezable(y-1 n-2), and expiration time in days\n";
cin >> ProductName >> ProductType;
cin >> ProductPrice;
cin >> freeze;
if(freeze == 1)
freezable = true;
else
freezable = false;
cin >> ExpirationTime;
}
virtual void Show(void){
cout << "Product's Name: " << ProductName;
cout << "Product's Type: " << ProductType << "\nProduct's Price: " << ProductPrice << "\nIs Freezable? :";
if(freezable)
cout << "Yes\n";
else
cout << "Not\n";
cout << "Expiration time (In days): " << ExpirationTime << endl;
}
private:
char *ProductName;
char ProductType; //1-Salty Pastry. 2-Sweet pastry. 3-Non baked dessert.
float ProductPrice; // To the customer
bool freezable;
int ExpirationTime; //In days
};
class Cake : public CBakery
{
public:
void Input()
{
CBakery::Input();
int cream;
cout << "Does it have cream?\n (1-y, 2-n)\n";
cin >> cream;
if(cream = 1)
Cream = true;
else
Cream = false;
cout << "What is the diameter?(22cm - 24cm - 26cm.....)\n What is the ammount of days to reserve the cake\n";
cin >> Diameter >> daysToReserve;
}
void showCake()
{
CBakery::Show();
cout << "Does it have Cream?\n";
if (Cream)
cout << "Yes\n";
else
cout << "No\n";
printf("The Diameter is: %s \n Days needed to reserve the cake are: %s\n", Diameter, daysToReserve);
}
private:
bool Cream;
char *Diameter; //( 22 cm, 24 cm, 26 cm) Not square cakes.
char *daysToReserve;
};
class PiesandSaltyPastries : public CBakery
{
public:
void Input()
{
CBakery::Input();
int weight, paste;
cout << "Sold based on weight? (y = 1, n = 2), Contains paste (y = 1, n = 2)?\n";
cin >> weight >> paste;
if(weight = 1)
soldBasedonWeight = true;
else
soldBasedonWeight = false;
if(paste = 1)
containsPaste = true;
else
containsPaste = false;
}
void showSalty()
{
CBakery::Show();
cout << "Is it sold based on weight or unities?\n";
if(soldBasedonWeight)
cout << "Based on weight\n";
else
cout << "Based on unities\n";
}
private:
bool soldBasedonWeight; //Weight = true, unity = false.
bool containsPaste;
};
class IceCreamandDesserts : public CBakery
{
public:
void Input()
{
int natural, milk;
CBakery::Input();
cout << "How many calories per unity, is it natural(Y = 1, N = 2) ingredients only?, does it contain milk(Y = 1, N = 2)?\n";
cin >> caloriesPerUnity;
cin >> natural >> milk;
if(natural = 1)
naturalIngredientsOnly = true;
else
naturalIngredientsOnly = false;
if(milk = 1)
containsMilk = true;
else
containsMilk = false;
}
void showDesserts()
{
CBakery::Show();
printf("Calories per unity: %s\n", caloriesPerUnity);
cout << "Does it have natural ingredients only? \n";
if(naturalIngredientsOnly)
cout << "Yes";
else
cout << "No";
cout << "Does it contain milk? \n";
if(containsMilk)
cout << "Yes";
else
cout << "No";
}
private:
char *caloriesPerUnity;
bool naturalIngredientsOnly;
bool containsMilk;
};
void main()
{
CBakery *bought[6];
char category;
for (int i = 0; i < 6; i++)
{
cout << "Is it a cake(1), pies or salty pastry(2), or Ice cream and desserts?(3)\n";
cin >> category;
switch(category)
{
case 1:
Cake * cake = new Cake;
cake -> Input();
bought[i] = cake;
break;
}
}
}
经过几个小时的(重新)搜索,我无法想出普通抽象类和使用模板模式之间的可解释区别。 我唯一看到的是: 使用抽象类时,您需要实现所有方法。但是在使用模板方法时,您只需要实现这两个抽象方法。 有人可以向我解
我正在尝试实现一种算法,该算法可找到以下形状给出的外多边形的每个单独边的对应区域。也就是说,1,2 边的相应区域是 [1,6,7,8,2],2,3 边的区域是 [2,8,3] 等等,CCW 或 CW
我正在尝试在派生 self 的 BaseController 类的任何 Controller 上自动设置一个属性。这是我的 Application_Start 方法中的代码。 UnitOfWork 属
我正在使用 mgcv 包通过以下方式将一些多项式样条拟合到一些数据: x.gam smooth$knots [1] -0.081161 -0.054107 -0.027053 0.000001
考虑以下代码: void foo(){ ..... } int main() { int arr[3][3] ; char string[10]; foo();
本书The c++ programming language有这个代码: class BB_ival_slider : public Ival_slider, protected BBslider {
是否有一个 package.json 属性可用于指定模块解析应启动的根文件夹? 例如,假设我们在 node_modules/mypackage/src/file1 中有一个安装。我们要导入的所有文件都
我正在尝试使用聚合函数来实现与 SQL 查询相同的结果: 查询语句: sqldf(" SELECT PhotoID, UserID,
我正在比较使用 LOESS 回归的两条线。我想清楚地显示两条线的置信区间,我遇到了一些困难。 我尝试过使用各种线型和颜色,但在我看来,结果仍然是忙碌和凌乱。我认为置信区间之间的阴影可能会使事情变得更清
给定这段代码 public override void Serialize(BaseContentObject obj) { string file = ObjectDataStoreFold
我正在构建某种工厂方法,它按以下方式将 DerivedClass 作为 BaseClass 返回: BaseClass Factory() { return DerivedClass(); }
当重写 class delegation 实现的接口(interface)方法时,是否可以调用通常从重写函数中委托(delegate)给的类?类似于使用继承时调用 super 的方式。 来自docum
我有一个基类 fragment (如下所示)。我在其他 3 个 fragment 类中扩展了此类,每个类都共享需要在这 3 个 fragment 中访问的相同 EditText。因此,我在基类中设置了
如何在不加载额外库的情况下在 R 中计算两个排列之间的 Kendall tau 距离(又名冒泡排序距离)? 最佳答案 这是一个 O(n.log(n)) 的实现,在阅读后拼凑而成,但我怀疑可能有更好的
情况 我创建了一个具有国际化 (i18n) 的 Angular 应用程序。我想在子域中托管不同的版本,例如: zh.myexample.com es.myexample.com 问题 当我使用命令 n
std::is_base_of 之间的唯一区别和 std::is_convertible是前者在 Base 时也成立是 私有(private)或 protected Derived 的基类.但是,您何
我创建了一个名为 baseviewcontroller 的父类(super class) uiviewcontroller 类,用于包含大多数应用屏幕所需的基本 UI。它包括一个自定义导航栏和一个“自
我是一名优秀的程序员,十分优秀!