473,401 Members | 2,127 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,401 software developers and data experts.

OOP Beginner needs help w/ anonymous array / hash

I'm teaching myself OOP by following examples. I can't figure out what this is doing for the life of me. I've read the explanation and still don't get it. Can anyone explain, plus is there a more obvious way to do this:

MY CONFUSION IS THIS STEP:
Expand|Select|Wrap|Line Numbers
  1. push (@{$year_index {$year}}, $rlEntry);         # By Year
  2.  
BOOK'S EXPLANATION:
Since we would like to retrieve entries by category or by year, we use a double indexing scheme.
Notice that each push statement does a fair bit of work. It creates an entry in the index (if required), hangs an anonymous array off that entry (if required), and pushes the reference to the entry into that array.

DATA:
1995:Actor:Nicholas Cage
1995:Picture:Braveheart
1995:Supporting Actor:Kevin Spacey
1994:Actor:Tom Hanks
1994:Picture:Forrest Gump
1928:Picture:WINGS

CODE:
Expand|Select|Wrap|Line Numbers
  1. open (F, "oscar.txt") || die "Could not open database: $:";
  2. %category_index = (); %year_index = ();
  3. while ($line = <F>) {
  4.     chomp $line;
  5.     ($year, $category, $name) = split (/:/, $line);
  6.     create_entry($year, $category, $name) if $name;
  7. }
  8.  
  9. sub create_entry {             # create_entry (year, category, name)
  10.     my($year, $category, $name) = @_;
  11.     # Create an anonymous array for each entry
  12.     $rlEntry = [$year, $category, $name];
  13.     # Add this to the two indices
  14.     push (@{$year_index {$year}}, $rlEntry);         # By Year
  15.     push (@{$category_index{$category}}, $rlEntry);  # By Category
  16. }
  17.  
Jul 14 '08 #1
3 1484
KevinADC
4,059 Expert 2GB
I already replied to this question on another forum, I think it was perlguru.
Jul 14 '08 #2
Yes you replied: "push @array, $foo;

the reference does the same thing except the array is the value of a hash key instead of just an array. This is also called complex data and is discussed in detail in many perl books and also online"

I got this from a perl book but still can't figure it out.

And I understand :
push(@array,$foo) put the value of $foo into array @array. This is simple.

But my confusion is:
$rlEntry = [$year, $category, $name];
push (@{$year_index {$year}}, $rlEntry); is complex.

I know that:
1) $rlEntry = [$year, $category, $name]; referrences an anonymous array.
2) $year_index {$year}} is a hash named year_index with key $year.
3) push (????,$rlEntry); puts $rlEntry somewhere.
4) I don't understand: @{$year_index {$year}}, what is the array name? Can this be done simpler?
Jul 15 '08 #3
KevinADC
4,059 Expert 2GB
Yes you replied: "push @array, $foo;

the reference does the same thing except the array is the value of a hash key instead of just an array. This is also called complex data and is discussed in detail in many perl books and also online"

I got this from a perl book but still can't figure it out.

And I understand :
push(@array,$foo) put the value of $foo into array @array. This is simple.

But my confusion is:
$rlEntry = [$year, $category, $name];
push (@{$year_index {$year}}, $rlEntry); is complex.

I know that:
1) $rlEntry = [$year, $category, $name]; referrences an anonymous array.
2) $year_index {$year}} is a hash named year_index with key $year.
3) push (????,$rlEntry); puts $rlEntry somewhere.
4) I don't understand: @{$year_index {$year}}, what is the array name? Can this be done simpler?
This is an array:

@{$year_index {$year}}

just like:

@array

or just like:

$array = [1,2,3,4];

all of the above are arrays, they only differ in the syntax used to create them. Read the page I posted a link to for you on the other forum and it is discussed in detail.

To answer your question #4, the answer is no. That is the simplest way to do what the code is doing, you could do it other more convoluted ways. Once you get the hang of complex data types in perl, and it is easy, you will wonder how you ever wrote code without using them.
Jul 15 '08 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

3
by: laurie | last post by:
Hi all, I'm trying to help out a friend who has inherited a client with a PHP shopping cart application. Neither of us know PHP, but I've been muddling my way through, trying to get these old...
2
by: Anders Eriksson | last post by:
Hello! I'm a beginner at PHP and I wonder how I would go about to read a textfile into an array(hash). The textfile looks like this: A/S=age/sex? A/S/L=age/sex/location? AA=alcoholics...
3
by: Casey | last post by:
Hi, I haven't being using perl for too long. Can someone explain the correct way to get the sort function to recognize an anonymous function declared as a hash value? Look at my sample code for...
5
by: R. Rajesh Jeba Anbiah | last post by:
I could see that it is possible to have hash array using objects like var hash = {"a" : "1", "b" : "2"}; Couldn't still findout how to declare hash array in Array. var arr = new Array("a" : "1",...
47
by: VK | last post by:
Or why I just did myArray = "Computers" but myArray.length is showing 0. What a hey? There is a new trend to treat arrays and hashes as they were some variations of the same thing. But they...
5
by: Stijn van Dongen | last post by:
A question about void*. I have a hash library where the hash create function accepts functions unsigned (*hash)(const void *a) int (*cmp) (const void *a, const void *b) The insert function...
4
by: anonymous | last post by:
Hi Folks, I have a form with two Dropdown list boxes, which get loaded with data from Database. DropDownList1 gets data from Table1 and DropDownList2 gets data from Table2 Table1 has a...
13
by: sathyashrayan | last post by:
Dear group, pls go through the following function definition: function at_show_aux(parent, child) { var p = document.getElementById(parent); var c = document.getElementById(child); var top ...
12
by: nodrogbrown | last post by:
hi i want to create an array of strings .I know the number of items that the array will contain but the size of each string will be different and will not be known at compile time. eg: in char...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.