as3 how to change a number by a class?

2019-09-20 13:32发布

The following code isn't working:

package 
{
    public class num
    {
        public function num()
        {

        }

        public function numto(num1:Number)
        {
            num1 = 47;
        }
    }
}

when I use in my main timeline:

import num;
var n:Number = 17;
numto(n);
trace(n); // must be 47 instead of 17

It gives me different error messages such as:

access of undefined property numto;

1条回答
我欲成王,谁敢阻挡
2楼-- · 2019-09-20 14:03

You should try to learn basics of Actionscript language. Read some general books, it will help you to understand what is going on.

As to your question specifically. There are such things as reference types and value types. I will not explain it here because there are plenty of material on the topic, you can just google for it. Number is value type. This means that when you pass Number as method parameter it arrives there as new "instance". It does not hold the reference to the original Number.

查看更多
登录 后发表回答