vote up 3 vote down star

Is anyone willing to help me craft a good explanation of why the following code is not correct, in that the author is attempting to write C++ code declaratively rather than procedurally?

const double NEWTONS_PER_POUND = 4.448;

int main()
{
   double pounds, newtons;
   pounds = newtons/NEWTONS_PER_POUND; /* pounds equals 'unassigned variable'/4.448 */
   newtons = 10.0;
   cout << pounds << endl;             /* a big number, not 10.0/4.448 */
   return 0;
}

The author expected cout to display a proper calculation, but instead gets a 'crazy number.'

I would explain this as "C++ is procedural, and therefore at the time of the declaration

pounds = newtons/NEWTONS_PER_POUND;

newtons has not been assigned a value.

Any better suggestions? Or an explanation why C++ isn't 'smart' enough to exhibit the behaviour the user mistakenly expected?

flag
3  
Many modern compilers will attempt to identify uninitialized variables and report them as compile-time errors. – adatapost Sep 1 at 6:57
2  
Actually following the semantics of the language you are using (and learning them, if you don't know them) usually helps. Nobody can write this in C++ and expect it to "work" in any way. Maybe it would, in a fictional C++ language, but not in the real one. If he doesn't understand your explanation, well, he's simply too stubborn or willingly blind to reality. – Daniel Daranas Sep 1 at 8:23
1  
One more time, I hold that people must learn low-level languages FIRST... starting with assembly. In assembly, the inherently sequential way the computer works is EXPLICIT. – Eduardo León Sep 1 at 12:38
There are no confusing statements such as b=c. – Eduardo León Sep 1 at 12:39
b=c is not confusing. The value of c is assigned to b. – Daniel Daranas Sep 1 at 18:23
show 2 more comments

10 Answers

vote up 16 vote down check

Tell the author that

pounds = newtons/NEWTONS_PER_POUND;

commands the CPU to

  • take the value at the address referred to as "newtons"
  • take the value at the address referred to as "NEWTONS_PER_POUND"
  • divide them
  • store the result at the address referred to as "pounds"

what he is looking for is most probably a function in imperative terms:

double newtons_to_pounds(double newtons) {
  return newtons/NEWTONS_PER_POUND;
}

...

newtons = 10.0;
cout << newtons_to_pounds(newtons) << endl;    /* a big number, not 10.0/4.448 */
return 0;
link|flag
vote up 0 vote down

Take a slightly more complex example where a variable like newtons is reused and assigned values more than once. For instance:

double pounds, newtons;

newtons = 10.0;
pounds = newtons/NEWTONS_PER_POUND;
cout << pounds << endl;

newtons = 15.0;
pounds = newtons/NEWTONS_PER_POUND;
cout << pounds << endl;

return 0;

Show him both the code and the output. Then ask him to explain how and why the program produces a different number for each line. I'd think that should help push him in the direction of viewing the program as a procedure that runs from top to bottom.

link|flag
vote up 0 vote down

Here is an example which explains it quite neatly; devx.com/tips. The simple answer is initialise everything before you read it, in the end the only thing this will cost is a couple of extra key strokes. It's not something which is really worth spending brain power on!

link|flag
vote up 1 vote down

What about stepping through the code in a debugger?

IME there's nothing like this to understand the execution of a program written in a procedural language (i.e., modeled on how the CPU actually executes code).

link|flag
vote up 4 vote down

If the person is not overly technical you could try:

"The statements in this C++ program are like the steps required to make a cake. You must perform the steps one by one and they must be to be performed in a certain order for it to be a success."

link|flag
Explaining C++ to "not overly technical" person seems quite useless :) – n0rd Sep 3 at 10:11
@n0rd, You're right I probably should say "an inexperienced programmer". – Ash Sep 4 at 4:04
vote up 1 vote down

Explain that pounds is assigned a value on the line with the assignment operator:

pounds = newtons/NEWTONS_PER_POUND;

If this were not the case, but that pounds was evaluated when it was used (as with the cout statement), then if the value of newtons changed, then the value of pounds would change as well. Since pounds is not any type of pointer, but is a simple integer, this is not possible.

link|flag
vote up 0 vote down

You are trying to get the listener to undergo a paradigm shift - to change his/her entire approach to comprehending this code.

"pounds" is just a number. It's got no concept of how its created. You tell "pounds" how it's created, it won't remember. It will just remember what it is, not how it is created.

It may seem a bit strange to anthropomorphise a block of memory. :-)

link|flag
2  
Don't anthropomorphize computers. They hate that. ;-) – Jeffrey Hantin Sep 2 at 23:25
vote up 17 vote down

C++ is an imperative programming language not an equation solver.

C++ executes statements in the order that you write them. C++ does not initialize variables unless it is told to. C++ allows you to use a variable whose value has not been initialized, but when you do this the result is unspecified. Unspecified means than anything can happen, including bad things like producing "crazy numbers".

Here's the detailed explanation:

double pounds, newtons;
pounds = newtons/NEWTONS_PER_POUND;
newtons = 10.0;

The first statement declares two variables without initializing them. At this point, their values are unspecified.

The second statement reads the value of newtons (which could be anything) and divides it by NEWTONS_PER_POUND. The result (which could be anything) is assigned to pounds.

The third statement initializes newtons, but it is too late to affect the calculation we just performed.

link|flag
"execute statements in the order that you write them." that's not correct. m(++x);. i 'wrote' the calling of m first. but it will actually increment x first, and then call m. – silky Sep 1 at 7:00
3  
@silky: "m(++x);" is one statement. – Stephen C Sep 1 at 7:03
When you write it, I hope you're fully aware of the order of precedence. So therefore you've written it in that order. Otherwise, why are you writing code when you don't know what it does? – Pod Sep 1 at 9:03
@Pod: what are you talking about? Of course I understand operator precedence!! But it has nothing to do with the order in which >>>STATEMENTS<<< are executed. – Stephen C Sep 1 at 9:39
And now, ladies and gentleman, welcome Goto and the Loops! – Zed Sep 1 at 12:43
show 8 more comments
vote up 7 vote down

Well that shouldn’t be too hard to explain, regardless of the students’ background: just thell them that C++ evaluates programs one step at a time, statement after statement (notwithstanding compiler artifacts such as reordering …).

There’s absolutely nothing special to C++’ way of handling this, nor is it even limited to computer programming – rather, it’s an everyday way of dealing with an ordered list of instructions.

link|flag
vote up 4 vote down

It's not lazy evaluating newtons

As such the calculation is performed at the time of declaration, not at the time of request. He's after functional code, not what C++ will do.

link|flag
If they are a programmer they might know what "lazy evaluating" means. Otherwise this would be a bit confusing. – Ash Sep 1 at 7:31
1  
Really? I always thought the explanation of lazy as opposed to eager was one of the easier things to explain to a non programmer. Lazy, does it when needed, eager, does it when told to. – Spence Sep 1 at 7:34
In functional programming, you still have to respect the sequence of the program flow. I think the author's code is more in the vein of logical (constraint-based) programming. – Eduardo León Sep 1 at 12:41
@Spenced, I've actually explained something I built to a non-programmer as using "lazy evaluation", they became annoyed I was using technical jargon! "Lazy" by itself is obvious but lazy evaluation seems to require more explanation. – Ash Sep 4 at 4:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.