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

  • SEARCH
  • Home
  • 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 8698523
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T01:44:56+00:00 2026-06-13T01:44:56+00:00

i tried several hours to store a sub array into an object and failed.

  • 0

i tried several hours to store a sub array into an object and failed. maybe someone of you can show me how to store a deep copy with perl.
sry i dont know if this question is clear, but should be easy to solve…

here the example.

here the object class

package obj;

use strict;
use warnings;
require Exporter;
our @ISA = qw(Exporter);

sub new(\@){
    my $class=shift;
    my $this={};
    $this->{"array"}=shift;
    return bless($this,$class);
}

sub getArray(){
    my $this=shift;
    return $this->{"array"};
}

and the test class

use strict;
use warnings;
use obj;

my @a=(1,2);
push @a,3;
my $ob=obj->new(\@a);
@a=();
print @{$ob->getArray()};

this returns nothing – does not shift dereference the array?

so how to do this?

thx

  • 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-06-13T01:44:58+00:00Added an answer on June 13, 2026 at 1:44 am

    Deference what array? The only array involved in the shift is @_? $_[0] is a scalar, not an array.

    A (shallow) array copy is done using:

    @dst = @src;
    

    so you want

    @{ $this->{"array"} } = @{ shift };
    

    If you truly want an deep copy (though there’s no need for it in your example), use

    use Storable qw( dclone );
    
    $this->{"array"} = dclone(shift);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have spent several hours on this, and tried various things. I can confirm
Doxygen noob here. I've searched and tried to resolve this for several hours now
I've searched for several hours and tried out everything I found, but nothing helped,
ObjectContext instance has been disposed in InRequestScope! I tried for several hours across the
I tried for several hours to get the following code working. The code should
I tried for several hours, to deliver my username and my password with query.
I have tried for several hours and searching on the net for examples on
I tried several solutions found on other posts but still having problems to autoresize
I tried several ways to retrieve datetime2(3) equivalent from C# code but in vain.
Having tried several solutions to get NHibernate to delete orphan records. Given the following

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.