1.var calculator = {   
2.    operand1: 1,   
3.    operand2: 1,   
4.    compute: function() {   
5.        this.result = this.operand1 + this.operand2;   
6.    }   
7.};   
8.calculator.compute();          
9.print(calculator.result);   
我想问一下RESULT这个方法,是CALCULATOR会自己生成吗???
是不是在对像下面