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

Re: What is the difference between a Statement and an Expression?

by Petruchio (Vicar)
on Aug 02, 2001 at 11:17 UTC ( [id://101603]=note: print w/replies, xml ) Need Help??


in reply to What is the difference between a Statement and an Expression?

If I am off the mark, here, I trust our local computer scientists will set me straight.

Quoth the Camel's glossary:


expression
Anything you can legally say in a spot where a value is required. Typically composed of literals, variables, operators, functions, and subroutine calls, not necessarily in that order.

statement
A command to the computer about what to do next, like a step in a recipe: "Add marmalade to batter and mix until mixed." A statement is distinguished from a declaration, which doesn't tell the computer to do anything, but just to learn something.


Similarly, Barron's Dictionary of Computer and Internet Terms says an expression is a series of symbols that can be evaluated to have a particular value, while a statement is a single instuction in a computer language.

In your example, then, 1+1 is actually the expression; it's not much of a statement, since it (normally) doesn't tell Perl to do anything meaningful.

$x = 1+1 is a statement, if you terminate it with a semicolon. It tells Perl to do something... evaluate the expression 1+1 and assign the result to $x.

It's not actually quite as clear cut as that, however. For instance, I believe 1+1 can qualify as a statement, as when you use it thus:

print two(),"\n"; sub two { 1+1 }

Here it's telling Perl that the return value of &two should be 2. Likewise, $x = 1+1 can be used as an expression:

perl -e 'print "Yup\n" if $x = 1+1;'

Here $x = 1+1 is used as an expression, with the conditional depending on its return value (which happens to be 2).

If this seems vague, remember that these terms are for your use, to help you express yourself. Whether you choose to call $x = 1+1 a statement or an expression tells us something of the way you're regarding it in the present context.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (5)
As of 2024-04-16 20:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found