الانتقال إلى المحتوى الرئيسي
eLearner.app
الوحدة 3 · الدرس 2 من 28/18 في الدورة~12 min
دروس الوحدة (2/2)

تمر حسب القيمة والمرجع

In C++, when you pass an argument to a function, there are two main ways to do it: by value or by reference.

Understanding this distinction is key to both program correctness and performance optimization.

Pass by Value (Copy)

By default, C++ passes arguments by value. This means a copy of the data is created in memory. Any modification made inside the function will not affect the original variable outside:

Code
#include <iostream>

void increment(int n) {
    n++; // Modifies only the local copy
}

int main() {
    int x = 5;
    increment(x);
    std::cout << x << std::endl; // Prints 5, x remains unchanged!
    return 0;
}

Pass by Reference (&)

If you want the function to be able to modify the original variable, or if you want to avoid copying large objects (like long strings or vectors), you must use pass by reference.

A reference is declared by adding the & symbol after the parameter's type:

Code
#include <iostream>

void incrementRef(int& n) {
    n++; // Modifies the original variable directly
}

int main() {
    int x = 5;
    incrementRef(x);
    std::cout << x << std::endl; // Prints 6!
    return 0;
}

The parameter int& n is not a copy, but an alias (a direct reference) to the variable x passed when calling the function.

Try it yourself

تمرين#cpp.m3.l2.e1
المحاولات: 0جارٍ التحميل…

Define a function named doubleNumber with a void return type that takes a reference to an integer n (using int& n) and doubles its value (n = n * 2). Call it in main passing the variable val initialized to 10, then print val.

جارٍ تحميل المحرر…
إظهار التلميح

The function signature uses the `&`character after the type to indicate a reference:`void doubleNumber(int& n)`.

الحل متاح بعد 3 من المحاولات

تمرين#cpp.m3.l2.e2
المحاولات: 0جارٍ التحميل…

Define a function named swap that takes two integer references a and b (int& a, int& b) and swaps their values using a temporary variable temp. Call it in main to swap x and y, and then print them.

جارٍ تحميل المحرر…
إظهار التلميح

Use `int temp = a; a = b; b = temp;` to swap the values.

الحل متاح بعد 3 من المحاولات