账号密码登录
微信安全登录
微信扫描二维码登录

登录后绑定QQ、微信即可实现信息互通

手机验证码登录
找回密码返回
邮箱找回 手机找回
注册账号返回
其他登录方式
分享
  • 收藏
    X
    装饰模型传递不了component
    27
    0

    代码

    Component

    public abstract class Component {
    
    public String FilePath;
    
    public abstract String operation();}
    

    ConcreteComponent

    public class ConcreteComponent extends Component{
    
        public ConcreteComponent(String FilePath) {
            this.FilePath = FilePath;
            // TODO Auto-generated constructor stub
        }
    

    Decorator

    public  abstract class Decorator extends Component {
    
        public Component c; 
    
    
        public Decorator(Component c) {
            // TODO Auto-generated constructor stub
    
            this.c = c;
        }
    
        @Override
        public String operation() {
            // TODO Auto-generated method stub
    
    
            return "";
        }
    
    }
    

    Bugfix

    public class bugfix extends Decorator {

    public bugfix(Component c) {
        // TODO Auto-generated constructor stub
    
        super(c);
    }
    public String operation()
    {
        String done = super.operation();
    
        //to do here
        return done + "bugfix";
        }
    
    }
    

    BankEnhanced

    public class BankEnhanced extends Decorator{
    
        public BankEnhanced(Component c) {
    
            // TODO Auto-generated constructor stub
            super(c);
        }
        public String operation()
        {
            String done = super.operation();
            //todo here
    
            return done + "enhanced";
        }
    }
    

    main

        String strFilePath = txtFilePath.getText();
    
        Component c = new ConcreteComponent(strFilePath);
    
        Decorator d = new bugfix(c);
    
        if(chkBankEnhanced.isSelected())
        {               
            System.out.println("Enhanced");
            Decorator d = new BankEnhanced(d);
    
        }
    
        d.operation();
        
        
        
        
    
    

    当chkBankEnhanced.isSelected()true,d.c.FilePath 就是null.

    我没看出来哪里有问题,谢谢大家指教了,谢谢。

    0
    打赏
    收藏
    点击回答
    您的回答被采纳后将获得:提问者悬赏的 11 元积分
        全部回答
    • 0
    • 肥鲇鱼 普通会员 1楼
      502 Bad Gateway

      502 Bad Gateway


      nginx
    更多回答
    扫一扫访问手机版
    • 回到顶部
    • 回到顶部