0

我如何避免在这个程序中使用指针变量和基于指针的传递引用?正如我的导师所说,没有必要使用指针。这是一个龟兔赛跑的模拟器,您将使用数字生成来模拟这个令人难忘的事件。

#include <iostream>
using std::cout;
using std::endl;

#include <cstdlib>
using std::rand;
using std::srand;

#include <ctime>
using std::time;

#include <iomanip>
using std::setw;

const int RACE_END = 70;

// prototypes
void moveTortoise( int *const );
void moveHare( int *const );
void printCurrentPositions( const int *const, const int *const );

int main()
{
   int tortoise = 1;
   int hare = 1;
   int timer = 0;

   srand( time( 0 ) );

   cout << "ON YOUR MARK, GET SET\nBANG !!!!"
      << "\nAND THEY'RE OFF !!!!\n";

   // loop through the events
   while ( tortoise != RACE_END && hare != RACE_END )
   {
      moveTortoise( &tortoise );
      moveHare( &hare );
      printCurrentPositions( &tortoise, &hare );
      timer++;
   } // end loop

   if ( tortoise >= hare )
      cout << "\nTORTOISE WINS!!! YAY!!!\n";
   else
      cout << "\nHare wins. Yuch.\n";

   cout << "\nTIME ELAPSED = " << timer << " seconds" << "\n" << endl;

   system("pause");

   return 0; // indicates successful termination
} // end main

// progress for the tortoise
void moveTortoise( int * const turtlePtr )
{
   int x = 1 + rand() % 10; // random number 1-10

   if ( x >= 1 && x <= 5 ) // fast plod
      *turtlePtr += 3;
   else if ( x == 6 || x == 7 ) // slip
      *turtlePtr -= 6;
   else // slow plod
      ++( *turtlePtr );

   if ( *turtlePtr < 1 )
      *turtlePtr = 1;
   else if ( *turtlePtr > RACE_END )
      *turtlePtr = RACE_END;
} // end function moveTortoise

// progress for the hare
void moveHare( int * const rabbitPtr )
{
   int y = 1 + rand() % 10; // random number 1-10

   if ( y == 3 || y == 4 ) // big hop
      *rabbitPtr += 9;
   else if ( y == 5 ) // big slip
      *rabbitPtr -= 12;
   else if ( y >= 6 && y <= 8 ) // small hop
      ++( *rabbitPtr );
   else if ( y > 8 ) // small slip
      *rabbitPtr -= 2;

   if ( *rabbitPtr < 1 )
      *rabbitPtr = 1;
   else if ( *rabbitPtr > RACE_END )
      *rabbitPtr = RACE_END;
} // end function moveHare

// display new position
void printCurrentPositions( const int * const snapperPtr,
   const int * const bunnyPtr )
{
   if ( *bunnyPtr == *snapperPtr )
      cout << setw( *bunnyPtr ) << "OUCH!!!";
   else if ( *bunnyPtr < *snapperPtr )
      cout << setw( *bunnyPtr ) << 'H'
         << setw( *snapperPtr - *bunnyPtr ) << 'T';
   else
      cout << setw( *snapperPtr ) << 'T'
         << setw( *bunnyPtr - *snapperPtr ) << 'H';

   cout << '\n';
} // end function printCurrentPositions
4

2 回答 2

0

在 C++ 中,您可以使用引用而不是指针。例如,而不是

void foo(int *x) {
  *x = *x + 1;
}

int main() {
  int a = 0;
  foo(&a);
  return 0;
}

您可以通过引用传递 x ,如下所示:

void foo(int &x) {
  x = x + 1;
}
int main() {
  int a = 0;
  foo(a);
  return 0;
}

传递一个引用有点像传递一个指针,只是你不需要在每次想要访问它指向的值时取消引用指针。您可以谷歌“C++ pass by reference”获取更多信息,例如本教程: http: //www.learncpp.com/cpp-tutorial/73-passing-arguments-by-reference/

或者,在您的程序中,您可以简单地传递int参数并返回新值:

int moveTortoise(int turtle) {
  ...
  turtle = turtle + 3;
  ...
  return turtle;
}

tortoise = moveTortoise(tortoise)
于 2013-03-19T00:35:35.263 回答
0

引用&和指针*在以下情况下很有用:
1.您处理通过引用传递是资源(CPU时间和主内存)消耗操作的复杂类的实例;
2. 当你想改变传递的参数时(因为 C++ 中的任何函数都只能返回一个值,例如与可以返回多个值的 python 相反,你可以通过使用 & 或 * 来处理该限制);
3. 其他情况...

内置(原子)类型可以按值传递(就是你的情况)而不会降低效率。

于 2013-03-19T00:56:35.847 回答