1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
var ExampleClass = (function(){ //privates statisches Attribut var staticVar = 0; //private statische Methode function staticMethod(){ } return function(fooValue,barValue){ //private Attribute var foo, bar; //private Methode function fooPrivate(){ } //foo Setter this.setFoo = function(value){ foo = value; } //foo Getter this.getFoo = function(){ return foo; } //bar Setter this.setBar = function(value){ bar = value; } //bar Getter this.getBar = function(){ return bar; } //Konstruktorcode staticVar++; if (staticVar > 5) throw new Error('Es können nur maximal 5 Instanzen erzeugt werden.'); this.setFoo(fooValue); this.setBar(barValue); } })(); |