Difference between revisions of "2022 - ToolCard"
(→The Constructors) |
|||
Line 71: | Line 71: | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | |||
+ | So here 1 constructor accepts parameters of 'string t, string k' and the other accepts parameters of 'string t, string k, int cardNo'. | ||
+ | |||
+ | 'base()' will also run the base constructor method. |
Revision as of 14:03, 22 December 2021
This is a subclass of Card.
The Code
class ToolCard : Card
{
protected string ToolType;
protected string Kit;
public ToolCard(string t, string k) : base()
{
ToolType = t;
Kit = k;
SetScore();
}
public ToolCard(string t, string k, int cardNo)
{
ToolType = t;
Kit = k;
CardNumber = cardNo;
SetScore();
}
private void SetScore()
{
switch (ToolType)
{
case "K":
{
Score = 3;
break;
}
case "F":
{
Score = 2;
break;
}
case "P":
{
Score = 1;
break;
}
}
}
public override string GetDescription()
{
return ToolType + " " + Kit;
}
}
New Variables
The ToolCard has additional variables not found in the parent class. These are 'ToolType' and 'Kit', they are both protected which means they would be available in any subclass of ToolCard.
The Constructors
ToolCard has 2 constructor methods, this is okay as long as they have different parameters. These are the constructors:
public ToolCard(string t, string k) : base()
{
ToolType = t;
Kit = k;
SetScore();
}
public ToolCard(string t, string k, int cardNo)
{
ToolType = t;
Kit = k;
CardNumber = cardNo;
SetScore();
}
So here 1 constructor accepts parameters of 'string t, string k' and the other accepts parameters of 'string t, string k, int cardNo'.
'base()' will also run the base constructor method.