Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^4: C-Style Struct?

by Arunbear (Prior)
on Aug 09, 2012 at 17:56 UTC ( [id://986566]=note: print w/replies, xml ) Need Help??


in reply to Re^3: C-Style Struct?
in thread C-Style Struct?

But now I can see no advantage to using your example over just using a hash ;)

Replies are listed 'Best First'.
Re^5: C-Style Struct?
by xiaoyafeng (Deacon) on Aug 10, 2012 at 01:11 UTC

    But now I can see no advantage to using your example over just using a hash ;)

    No, My way is using a perl object to create a struct, every struct created by this has the same elements and spawned by the same creator.
    my %hash_1 = (number => 123, name => aa, stuff => \@xx); my %hash_2 = (number => 124, name => bb, stuff => \@yy); my %hash_3 = (number => 125, name => cc, stuff => \@zz); #if you chang +e struct, you have to change every instance. ..... ..... ..... my $aa = C_struct->new(123,'aa', [1,2,3]); my $bb = C_struct->new(234,'bb', [2,3,4]); #every instance is spawned +by the same object.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://986566]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (2)
As of 2024-04-19 19:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found