C++ Bug probably scope problem


 
Thread Tools Search this Thread
Top Forums Programming C++ Bug probably scope problem
# 1  
Old 08-28-2014
C++ Bug probably scope problem

Hello,
I have some difficulty to understand the scope of this program adapted from C++ book of D.S. Malik I am reading.
I put the header and the main program as attachment to save space. My problem is the output:
Code:
$ ./prog1009_die
Line 4: Not yet rolled, die1 gets default number: 1
Line 5: Not yet rolled, die2 gets default number: 1

Line 6: After first rolling die1: 4
Line 7: After first rolling die2: 5
Line 8: The sum of the numbers rolled by the dice is: 9

Line 6-2: After second rolling die1: 2
Line 7-2: After second rolling die2: 4

Line 9: After rolling again (third time), 
die1 (die1.roll()): 5
die2 (die2.roll()): 4
the sum of the numbers rolled [die1.getNum() + die2.getNum()] is: 8
the sum of the numbers rolled [die1.roll() + die2.roll()] is: 8

Line 9-2: After rolling again (third time)
die1 (die1.getNum()): 5
die2 (die2.getNum()): 4
the sum of the numbers rolled [die1.getNum() + die2.getNum()] is: 9

I was expecting Line 9 part would be the same result as Line 9-2 part, but the sum of the two numbers is not right. It is difficult for me to understand why. The problem may be related to die::roll() and die::getNum() functions in this case, but I am not sure.
Code:
int die::roll()
{
    num = rand() % 6 + 1;
    return num;
}

int die::getNum() const
{
    return num;
}

Also I am aware the rand() function here so each time the number will change. Can somebody elaborate it for me? Thanks a lot!

Last edited by yifangt; 08-28-2014 at 04:29 PM.. Reason: typos
# 2  
Old 08-28-2014
You rolled again for sum so the sum is for that roll. Do get for sum.
This User Gave Thanks to DGPickett For This Post:
# 3  
Old 08-28-2014
Thanks!
Just to confirm: Did you mean this part in the source code?:
Code:
Line 9 ... ... <<"\nthe sum of the numbers rolled [die1.roll() + die2.roll()] is: " << die1.roll() + die2.roll() << endl;

causing roll() anther time?

Wait a minute! Yes, roll() was called again, then Line 9-2 the sum of the numbers rolled [die1.getNum() + die2.getNum()] should print the same as Line 9 the sum of the numbers rolled [die1.roll() + die2.roll()], Right?
2) Does getNum() const; play some trick here?
I was confused with the scope of getNum() and roll() here. Thanks again!

Last edited by yifangt; 08-28-2014 at 06:04 PM..
# 4  
Old 08-29-2014
You have a big long cout calling multiple things which have side-effects on each other, and the order they are done is ambiguous -- remember this is a compiled, heavily optimized language, not a one-at-a-time string interpreter. Re-imagine your code like this:

myfunction(die1.getnum(), die2.getnum(), die1.roll(), die2.roll());

When written that way, whether roll() gets called before or after getnum() is more obviously ambiguous.

Split it into two cout statements to avoid the side-effects.

It has nothing to do with the const. It just means that calling that function has no side-effects. It doesn't guarantee that all other functions have no side effects however.

Last edited by Corona688; 08-29-2014 at 12:49 PM..
This User Gave Thanks to Corona688 For This Post:
# 5  
Old 09-02-2014
Almost got your point. I re-wrote the code as:
Code:
cout << "Line 9: After rolling again (third time), ";
cout << "\ndie1 (die1.roll()): " << die1.roll();    //Line 9 - a1
cout << "\ndie2 (die2.roll()): " << die2.roll();    //Line 9 - a2
cout << "\nthe sum of the numbers rolled [die1.getNum() + die2.getNum()] is: " << die1.getNum() + die2.getNum();         //Line 9 - c1
cout << "\nthe sum of the numbers rolled [die1.roll() + die2.roll()] is: " << die1.roll() + die2.roll() << endl;          //Line 9 - c2

Line 9-c1 die1.getNum() + die2.getNum() was from previous rolling.
At Line 9-c2 die1.roll() and die2.roll() gets rolled again when they are combined together as die1.roll() + die2.roll(). That caused the confusion.
In turn, Line 9-c2 prints out the same as next Line 9-2 because die1.getNum()+ die2.getNum() are from the roll() of Line 9-c2.

Without your suggestion, I could not figure this out.
Thanks again!

Yifang

Last edited by yifangt; 09-02-2014 at 05:48 PM.. Reason: typos
# 6  
Old 09-16-2014
If roll() returns void then people will not be confused when rolling and when examining with get(). Compiled code will be same or smaller and faster.

Last edited by DGPickett; 09-16-2014 at 11:37 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

PERL annoying scope problem

Hello, I met a problem with following code: #!/usr/bin/perl -w # test.pl use strict; use diagnostics; use DBI; my $dbh = DBI->connect( "DBI:mysql:BibleBook","yifangt","password") or die("Cannot connect: $DBI::errstr"); my $sql = qq(SELECT * FROM library WHERE isbn =... (2 Replies)
Discussion started by: yifangt
2 Replies

2. Shell Programming and Scripting

Bourne Shell - Problem with while loop variable scope.

Hello I am having issues with a script I'm working on developing on a Solaris machine. The script is intended to find out how many times a particular user (by given userid) has logged into the local system for more than one hour today. Here is my while loop: last $user | grep -v 'sshd'... (7 Replies)
Discussion started by: DaveRich
7 Replies

3. High Performance Computing

MPI_Bcast problem, bug?

Hi, I'm trying to define an MPI_datatype for a structure, then do message passing for this created datatype. However, when I tried to broadcast the initialized data from rank 0, I found that part of the received data at other ranks are not correct. Could you please help me take a look at my code... (0 Replies)
Discussion started by: qb13
0 Replies

4. Shell Programming and Scripting

variable scope

Hi, I want to know about the variable scope in shell script. How can we use the script argument inside the function? fn () { echo $1 ## I want this argument should be the main script argument and not the funtion argument. } also are there any local,global types in shell script? if... (3 Replies)
Discussion started by: shellwell
3 Replies

5. Shell Programming and Scripting

problem with shell variable's scope

Hi, I am stuck while developing a shell sub-routine which checks the log file for "success" or "failure". The subroutine reads the log file and checks for key word "success", if found it set the variable (found=1). It returns success or failure based on this variable. My problem is, I can... (2 Replies)
Discussion started by: cjjoy
2 Replies

6. Shell Programming and Scripting

Variables scope.

Hi , I'm trying to change the variable value in a while loop , however its not working it seems that the problem with subshells while reading the file. #!/bin/sh FLAG=0; cat filename | while read data do FLAG=1; done echo $FLAG Should display 1 instead displays 0 (13 Replies)
Discussion started by: dinjo_jo
13 Replies

7. AIX

Scope of AIX

What is the scope of AIX as I am starting my career as a fresher in AIX administration?? (4 Replies)
Discussion started by: abhishek27
4 Replies

8. Programming

scope

Each thread has a copy of auto variables within a function, but variables declared as static within a function are common to all threads. To circumvent this can static variables be placed outside the function. If so, will the scope of the variable be file only or will it be extern, and will each... (7 Replies)
Discussion started by: sundaresh
7 Replies

9. Programming

C++: scope, different files etc..

I'm having a problem getting this to work.. I got 3 files, start.C - Where i got my main() function Menu.C & Menu.h - Where I'm trying to use hash_map start.C #include <iostream> #include "Menu.h" using namespace std; int main() { /* test code here */ return 0; } Menu.h ... (1 Reply)
Discussion started by: J.P
1 Replies
Login or Register to Ask a Question