If your variables have utterly different names and completely different purposes, which prevents from putting them into one array, you might want to use something like
{
no strict 'refs';
my @incs = qw( index chapter index pages names );
for my $i (@incs) {
${"total_$i"} += $$i;
}
}
It would still be better if you first built up an hash with hard references and then iterate through the command list
my %incs = (index => [ \$index, \$total_index ],
chapter => [ \$chapter, \$total_chapter ],
pages => [ \$pages, \$total_pages ],
names => [ \$names, \$total_names ] );
my @incs = qw( index chapter index pages names );
${$incs{$_}->[1]} += ${$incs{$_}->[0]} for (@incs);
This does not violate use strict (assuming that you have declared all your variables before);
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.