Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Say I have a button where the user clicks and 2+ things would happen:

  1. A business logic will be invoked.
  2. UI will change on screen.

The invoked business logic looks like this:

car.setCommand(new StartCarCommand(engine));
car.execute()

the UI looks like this:

class CarUI
{
    startEngine(picture)
    {
         //show car starting engine picture.
    }
}

So How to provide an effective 'Loose coupling' or how should this be designed. I can surely do something like this:

car.setCommand(new StartCarCommand(engine, carUI));

and in the execute to do:

execute()
{
    engine.start();
    carUI.setPicuture("....");
}

but it feels that it defeats the 'command pattern'. Should I add another command pattern only for the UI?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share

548k questions

547k answers

4 comments

56.5k users

...