0

時計を作成するために 2 つの異なるオブジェクトがあります。アナログとデジタルです。わずかな変更を除いて、実質的に同じです。

ただし、オブジェクト内の多くのメソッドが両方で使用されています。私はそれらをインスタンス化したいと思っています。だから私はオブジェクトにそれらが必要です。Clockたとえば、基本的なメソッドを持つオブジェクトをJavascriptanalogueClockとの間で拡張するにはどうすればよいですか?digitalClock

これは私が持っていて機能しないものです:

呼び出し

if (clockType == 'digital') {
    clk = new DigitalClock(theClockDiv);
} else if (clockType == 'analogue') {
    clk = new AnalogueClock(theClockDiv);
}

baseClock = new baseClock();    
$.extend({}, clk, baseClock);

そして機能

function DigitalClock(theDigitalClockParent, indicatedTime) {
    this.indicatedTime = indicatedTime;
    this.interval = null;
    this.buildClock = function() {
        //CUSTOM THINGS HERE
    }

    this.setCurrentTime();
    this.buildClock();
    this.startRechecker();
}


function AnalogueClock(theAnalogueClockParent, indicatedTime) {
    this.indicatedTime = indicatedTime;
    this.interval = null;
    this.buildClock = function() {
        //CUSTOM THINGS HERE
    }

    this.setCurrentTime();
    this.buildClock();
    this.startRechecker();
}

function baseClock() {
    this.setCurrentTime = function() {
        if (this.indicatedTime != undefined) {
            this.date = new Date(railsDateToTimestamp(this.indicatedTime));
        } else {
            this.date = new Date();
        }

        this.seconds = this.date.getSeconds();
        this.minutes = this.date.getMinutes();
        this.hours = this.date.getHours();
    }

    this.startInterval = function() {

        //Use a proxy in the setInterval to keep the scope of the object.
        this.interval = setInterval($.proxy(function() {
            //console.log(this);
            var newTime = updateClockTime(this.hours, this.minutes, this.seconds);
            this.hours = newTime[0];
            this.minutes = newTime[1];
            this.seconds = newTime[2];
            this.buildClock();
        }, this), 1000);
    }

    this.stopInterval = function() {

        window.clearInterval(this.interval);
        this.interval = null;
    }   
}
4

1 に答える 1

3

基本クラスでDigitalClockandを拡張できます。AnalogueClock次のようなことができます。

DigitalClock.prototype = new baseClock();
AnalogueClock.prototype = new baseClock();

したがって、DigitalClock と AnalogueClock は baseClock のメソッドを継承します。もう 1 つのオプションは、mixin を使用して両方のクラスを拡張することです。

于 2013-09-25T14:35:37.437 に答える