DeductionContext.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:0k
源码类别:

软件工程

开发平台:

Java

  1. package com.company;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class DeductionContext {
  7. //扣款策略
  8. private IDeduction deduction = null;
  9. //构造函数传递策略
  10. public DeductionContext(IDeduction _deduction){
  11. this.deduction = _deduction;
  12. }
  13. //执行扣款
  14. public boolean exec(Card card,Trade trade){
  15. return this.deduction.exec(card, trade);
  16. }
  17. }