Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6976035
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:26:42+00:00 2026-05-27T17:26:42+00:00

Not quite sure if I asked correctly, but basically I have an array that

  • 0

Not quite sure if I asked correctly, but basically I have an array that stores some var(int/numbers). And when I loop through the array changing the numbers of the var, at the end the number seems still unchanged. You would have a better idea of what I’m talking about base on the below code.

private var _numArray:Array = new Array()
    private var _no1:int
    private var _no2:int

    public function Main():void
    {
        _no1 = 10
        _no2 = 20
        _numArray.push(_no1)
        _numArray.push(_no2)

        while (_numArray.length)
        {
            _numArray[0] = 0
            _numArray.splice(0, 1)
        }
        trace(_no1, _no2) // still returning 10 , 20
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T17:26:43+00:00Added an answer on May 27, 2026 at 5:26 pm

    If you want the array to store references instead of values, you’ll need to use a non-primitive datatype. Among the primitive datatypes are int, uint, Number, Boolean and String. A non-primitive (complex) datatype is anything else.

    // SpecialNumber.as
    
    public class SpecialNumber
    {
        public var value:Number;
    
        public function SpecialNumber(value:Number)
        {
            this.value = value;
        }
    }
    
    // Main.as
    
    public class Main
    {
        public function Main()
        {
            var no1:SpecialNumber = new SpecialNumber(5);
            var no2:SpecialNumber = new SpecialNumber(10);
    
            var array:Array = [no1, no2];
    
            array[0].value += 10;
            array[1].value += 60;
    
            trace(no1.value, no2.value) // Output is "15 70"
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Not sure if this is asked, but searching hasn't quite yielded what I'm looking
Not quite sure how to phrase this, but will do my best. I have
Not quite sure I have the question fully formed, but what I'm trying to
I'm not quite sure how this happened, but somehow a completely empty hierarchy of
I'm not quite sure how to do this. Let's say I have 2 associative
Not quite sure if it is ok to do this but, my question is:
Im not quite sure what the term is, I have been calling it Split
Not quite sure how to ask or define this, but can't figure it out.
I'm not sure if this question has been either asked or quite possibly already
Not quite sure what's going on here but it seems as though Microsoft always

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.