⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex5_08.cpp

📁 Visual C++ 2005的源代码
💻 CPP
字号:
// Ex5_08.cpp
// Using a reference to modify caller arguments
#include <iostream>
using std::cout;
using std::endl;

int incr10(const int& num);      // Function prototype

int main(void)
{
   const int num = 3;            // Declared const to test for temporary creation
   int value = 6;

   cout << endl
        << "incr10(num) = " << incr10(num);

   cout << endl
        << "num = " << num;

   cout << endl
        << "incr10(value) = " << incr10(value);

   cout << endl
        << "value = " << value;

   cout << endl;
   return 0;
}

// Function to increment a variable by 10
int incr10(const int& num)       // Function with const reference argument
{
   cout << endl
        << "Value received = " << num;

//   num += 10;                  // this statement would now be illegal
   return num+10;              // Return the incremented value
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -