8

オブジェクトの変更時にオブジェクトの履歴を保持するためのいくつかのデザインパターンは何ですか。イベントソーシングほど強力なものは必要ありません。特定のイベントが発生したとき(この場合はフォームの印刷ボタンが押されたとき)に過去のバージョンを保存する機能だけが必要です。

4

3 に答える 3

7

mementoパターンを探すことができます

于 2009-02-24T20:05:55.460 に答える
2

This sounds isomorphic to tracking undo information. The usual pattern for this is a variant of the Command pattern: you keep a queue in time order of previous states, with an operation to restore to the previous state.

于 2009-02-24T20:06:21.793 に答える