How would I begin to write a mortgage calculator that compiles and runs, but I would be bale to add a GUI to later without re-writing the initial code
问问题
50 次
2 回答
1
使用模型-视图-控制器模式。 http://en.wikipedia.org/wiki/Model_view_controller
于 2013-04-22T18:50:06.470 回答
0
确保将计算抵押贷款的服务方法编写为reusable
/ decoupled
。这意味着不直接依赖于控制台输入/输出等。一旦存在,您可以使用它与 Swing GUI/Web 界面等一起使用。
于 2013-04-22T18:50:12.547 回答