Void context ... Maybe its best to avoid this one altogether
Void context is where you're performing an operation and
doing nothing with the result. That is,
#!/usr/bin/perl -cw
"String";
tells me:
Useless use of a constant in void context at - line 2.
In fact, I care about this because it generally indicates a problem with my program.
What use is a constant where I don't store what that constant is?
Void context can be useful. Consider:
grep { s/\s+$// } @lines;
which will remove all trailing whitespace from all the lines
I have in @lines.
grep normally returns the lines
that matched the pattern. But because I'm in void context,
the values just get thrown away and all I'm left with is
@lines which contains every line missing its trailing
whitespace. (By the way, the better way to do that is:
foreach (@lines) { s/\s+$// }).
Consider also that some objects require methods to be run
in void context. While you're not just throwing away
their values, these things have side effects that perform
useful work. For example, in CGI, you can do:
$cgi->import_names('R');
which, while run in void context, imports all parameters
into the 'R' namespace.
So, in summary,
-w isn't complaining because
you're running things in void context. It's complaining
because you're running in void context without doing
anything that could be construed as useful.
Update: D'oh, chromatic beat me to it.
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.