Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to create get and set method for a property:

private _name: string;

Name() {
    get:
    {
        return this._name;
    }
    set:
    {
        this._name = ???;
    }
}

What's the keyword to set a value?

share|improve this question

3 Answers

up vote 4 down vote accepted

Here's a working example that should point you in the right direction:

class Foo {
    static _name;

    static get Name() {
        return _name;
    }

    static set Name(val) {
        _name = val;
    }
}

Getters and setters in JavaScript are just normal functions. The setter is a function that takes a parameter whose value is the value being set.

share|improve this answer
1  
But why exist the get and set keyword so? – MuriloKunze Oct 10 '12 at 20:12
I am not sure what you are asking. Can you clarify? – Brian Terlson Oct 10 '12 at 20:20
What is the meaning of get and set keywords? – MuriloKunze Oct 10 '12 at 20:23
Get and set keywords in TypeScript are used to declare getter and setter members on classes as well as in object literals just like JavaScript. Check out the playground and see how the keywords change the JavaScript output: typescriptlang.org/Playground – Brian Terlson Oct 10 '12 at 20:26
Yeah, I understand that, but how can I use 'set' to set a value like in my question?. in c# I write set { _name = value }. – MuriloKunze Oct 10 '12 at 20:29
show 1 more comment

Typescript uses getter/setter syntax that is like ActionScript3.

class foo {
    private _bar:bool = false;
    get bar():bool {
        return this._bar;
    }
    set bar(theBar:bool) {
        this._bar = theBar;
    }
}

That will produce this Javascript, using the Ecmascript 5 Object.defineProperty() feature.

var foo = (function () {
    function foo() {
        this._bar = false;
    }
    Object.defineProperty(foo.prototype, "bar", {
        get: function () {
            return this._bar;
        },
        set: function (theBar) {
            this._bar = theBar;
        },
        enumerable: true,
        configurable: true
    });
    return foo;
})();

However, in order to use it at all, you must make sure the TypeScript compiler targets ECMAScript5. If you are running the command line compiler, use --target flag like this;

tsc --target ES5

If you are using Visual Studio, you must edit your project file to add the flag to the configuration for the TypeScriptCompile build tool. You can see that here:

share|improve this answer

You can write this

class Human {
    private firstName : string;
    private lastName : string;

    constructor (
        public FirstName?:string, 
        public LastName?:string) {

    }

    get FirstName() : string {
        console.log("Get FirstName : ", this.firstName);
        return this.firstName;
    }
    set FirstName(value : string) {
        console.log("Set FirstName : ", value);
        this.firstName = value;
    } 

    get LastName() : string {
        console.log("Get LastName : ", this.lastName);
        return this.lastName;
    }
    set LastName(value : string) {
        console.log("Set LastName : ", value);
        this.lastName = value;
    } 

}
share|improve this answer
Why the public in constructor? – MuriloKunze Oct 11 '12 at 18:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.