Machine.js
Machine.js 可以讓你使用分層狀態機來控制 JavaScript 對象。
// the landscape object - rains or is sunny function Landscape() { this.groundwater = 0; this.oxygen = 0; } Landscape.prototype = { hasWater: function() { return this.groundwater > 0; }, giveWater: function() { this.groundwater -= 1; return 1; }, oxygenate: function() { this.oxygen += 1; }, };
本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!