forked from EdisonTalk/DesignPattern.Samples.CSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAccount.cs
62 lines (54 loc) · 1.45 KB
/
Account.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EDC.DesignPattern.TemplateMethod
{
/// <summary>
/// 抽象类:Account
/// </summary>
public abstract class Account
{
// 基本方法 - 具体方法
public bool Validate(string account, string password)
{
Console.WriteLine("账号 : {0}", account);
Console.WriteLine("密码 : {0}", password);
if (account.Equals("张无忌") && password.Equals("123456"))
{
return true;
}
else
{
return false;
}
}
// 基本方法 - 抽象方法
public abstract void CalculateInterest();
// 基本方法 - 具体方法
public void Display()
{
Console.WriteLine("显示利息");
}
// 基本方法 - 钩子方法
public virtual bool IsAllowDisplay()
{
return true;
}
// 模板方法
public void Handle(string account, string password)
{
if (!Validate(account, password))
{
Console.WriteLine("账户或密码错误,请重新输入!");
return;
}
CalculateInterest();
if (IsAllowDisplay())
{
Display();
}
}
}
}