Hint: You can adjust the default video playback speed in your account settings.
Hint: You can set your subtitle preferences in your account settings.
Sorry! Looks like there’s an issue with video playback 🙁 This might be due to a temporary outage or because of a configuration issue with your browser. Please refer to our video player troubleshooting guide for assistance.

Pass by Value

00:00 In this lesson, you’ll look at a mechanism for argument passing called pass by value. Here’s a C++ version of that same square() function from the last lesson.

00:11 C++ requires a lot of type information to indicate the kind of values the variables will represent. In this case, I’d like decimal numbers and double precision, so you see the word double.

00:24 But you can also see the parameter num still exists. It’s still being multiplied by itself to perform the square operation, and then its value is returned.

00:36 Here, again, you can see that same function after some standard lines of code that almost all C++ programs need to work. Take your parameter num, square it, and return it.

00:50 Since I don’t have a way to run C++ code interactively, I’ll have to write something like a script to test it. In C++, we call that a main function. You can see inside this main function that I create a variable val.

01:05 I’m saying it’s an integer, but C++ can make it a decimal value when the function is called. The next line is C++’s unique output statement. It begins with the word cout. Then, with less than sign type of arrows (<<), we indicate what we want printed.

01:25 In this case, we want the return value of the function square() being called on the value in val, 4. The last endl is C++’s way to indicate the end of the line.

01:42 I’ll get in my terminal shell to run this. C++ programs need to be compiled, and this next statement does that.

01:56 And then to run it, I type square with some extra punctuation to make it execute.

02:03 And there you see the result of 16, just as we expected.

02:09 C++ uses something called pass by value for simple types. I can demonstrate that with a very simplified model of memory. When the main function is run, a specific place in memory is designated to hold the value of the variable val, which has a value of 4. When the function is called, a new place of memory is made to hold the value of num, and then the value of 4 is copied from val to that memory location.

02:39 That’s what we mean by “pass by value.” The value is copied from the argument to the parameter. When the function finishes running, the memory for num is removed but the memory location for val remains until the program itself quits running.

02:58 Now, I know this is a very simplified explanation of how memory works, but hopefully it illustrates the point that I want to make. The value of val, 4, is copied to be the value of num. “Pass by value.” Pass by value works for simple types, but not for more complicated structures.

03:19 Here is a simple C++ function to find the mean of a collection of numbers—in this case, provided in something called an array. In C++, we have to pass the array and the size of the array as arguments to this function.

03:36 The array is being saved in the parameter called a, and the size in n.

03:48 I won’t go into the details of how this function works. Just know that it loops through the collection, accumulating the sum as it goes. Then it divides that by the size of the collection. Below it, I have a main function that creates an array called numbers and then passes that array and its size to the arrayMean() function.

04:09 The result is then printed, like our previous program. I can go back to the terminal, compile, and run it.

04:30 And 6.5 is indeed the mean of those ten values.

04:36 Let’s consider what memory would look like if this collection was being passed by value. First, memory would be created for the array numbers.

04:47 Then, when the function was called, the entire array would be copied into a new location for the parameter a, the point being that the entire array would be duplicated in memory.

05:00 That’s not necessarily a big deal if the array size is 10, but what if it were something larger, or much larger? That would be a lot of repeated information in memory.

05:12 And even if memory size isn’t a problem, there’d be a lot of computation time to copy the entire array from one location in memory to another. So, pass by value might not be the best mechanism for more complicated types. This is where pass by reference comes in.

05:31 By the way, Python doesn’t use pass by value. You’re just seeing it now to compare it to pass by reference, which you will then compare to Python’s mechanism.

05:43 You’ll look at pass by reference in the next lesson.

Become a Member to join the conversation.