Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some questions about JavaScript that I need to nail down. To help, I have a simple class definiton I'm writing:

var dataSource = function (src, extension) {
    return {
        exists: function () {
            // function to check if the source exists (src *should* be an object
            // and extension should be a string in the format ".property.property.theSource".
            // this function will return true if src.property.property.theSource exists)
        },
        get: function () {
            // function will return the source (ex: return src.property.property.theSource)
        }
    }   
}();

Questions:

1) In my current understanding of JavaScript, calling dataSource() will create a new object with its own copies of the exists() and get() methods. Am I correct?

2) Is there a way to write this so that if I create 1,000,000 dataSource objects I only have to have one copy of each function?

3) Should I even be concerned with (2)?

share|improve this question

4 Answers

up vote 4 down vote accepted

What you have there is a function that returns an istance of Object, not a JS class.

You will want to check out using DataSource.prototype, and you should be adding properties to or modifying this within your constructor if you want to use this in conjunction with new

You should probably be doing something like this:

function DataSource(src, extension){
    //Make sure this behaves correctly if someone forgets to use new
    if (! this instanceof DataSource)
         return new DataSource(src,extension);
    //store the constructor arguments
    //so you can use them in the shared methods below
    this._src=src;
    this._extension=extension;
}
DataSource.prototype.exists=function(){
    //use this._src and this._extension here
    //This method will be available to all
    //objects constructed by new DataSource(...)
};
DataSource.prototype.get=function(){
    //use this._src and this._extension here
    //This method will be available to all
    //objects constructed by new DataSource(...)
};

var instance = new DataSource('a source','an extension');

Edit: You've mentioned you would prefer 'private' variables

Constructing closures is the only portable way of simulating private properties, however in my experience prefixing them with an _ and having a convention within your organisation to not rely on _ prefixed variables is sufficient in most situations

share|improve this answer
Don't forget the semicolons after the function assignments. In some situations, it can lead to a nasty ambiguity for the parser. – Ates Goral Jan 28 '11 at 7:59
ty, always forget those, fixed – tobyodavies Jan 28 '11 at 8:02
can src and extension be kept private? – JustcallmeDrago Jan 28 '11 at 8:03
no, I meant the part: "constructing closures - is the only portable way of simulating private vars...". I'll assume you'll edit that in. Thank you! – JustcallmeDrago Jan 28 '11 at 8:28

Prototype is what you'll want to use. It will be stored once and associated with all instances of the object.

share|improve this answer
can I still keep src and extension private? – JustcallmeDrago Jan 28 '11 at 7:59
@JustCallmeDrago, what you have been doing - constructing closures - is the only portable way of simulating private vars. In my experience prefixing them with an _ and having a convention within your organisation to not rely on _ prefixed variables is sufficient in most situations – tobyodavies Jan 28 '11 at 8:07
@Toby: Ah. That's what I was looking for. If you add that distinction to your answer, I'll accept it! – JustcallmeDrago Jan 28 '11 at 8:21

You have inserted class variables in return values. So as many objects you instantiate, so many instance will be created.

According to your requirement, if you separate class variables from return types and declare only once (for all) then for every instance those properties will be available. It means those variables (defined as ExampleClass.prototype=function() {} ) will work as a static variable in c/c++

share|improve this answer

You can create that class like this to make multiple copies easily.

  • Edit - Added constructor arguments.

    function DataSource(src, extension) {
        this.src = src,
        this.extension = extension,
        this.exists = function() {
            // function to check if the source exists (src *should* be an object
            // and extension should be a string in the format ".property.property.theSource".
            // this function will return true if src.property.property.theSource exists)
        },
        this.get = function() {
            // function will return the source (ex: return src.property.property.theSource)
        }
    }
    dataSource1 = new DataSource();
    dataSource2 = new DataSource();
    
share|improve this answer
Why did someone down vote this answer? I'm not a Javascript guru, but this looks like a perfectly legitimate option. – Shango Jan 28 '11 at 8:05
1  
because it's exactly the same as what you already had – tobyodavies Jan 28 '11 at 8:08
@tobyodavies how is this the same?. My object is being created from a class which can be prototyped down the line if needed. The way it is created in the question does not allow for the object to be prototyped later since there is no class. What am I missing? – sissonb Jan 29 '11 at 2:30
it's the same in terms of the question - he wanted to avoid closures, the fact this works with new is irrelevant, it still uses closures and so doesn't address the thrust of the question. i agree using real classes was necessary to solve the question, but this is just change for the sake of change, it has no advantages over the original without, as you noted, further work. The further work was what the question was about, thus it does not stand on its own as an answer. – tobyodavies Jan 29 '11 at 5:44
@tobyodavies How is this question about avoiding closure? – sissonb Feb 17 '11 at 7:05
show 1 more comment

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.