COURSES
MBAData Science & AnalyticsDoctorate Software & Tech AI | ML MarketingManagement
Professional Certificate Programme in HR Management and AnalyticsPost Graduate Certificate in Product ManagementExecutive Post Graduate Program in Healthcare ManagementExecutive PG Programme in Human Resource ManagementMBA in International Finance (integrated with ACCA, UK)Global Master Certificate in Integrated Supply Chain ManagementAdvanced General Management ProgramManagement EssentialsLeadership and Management in New Age BusinessProduct Management Online Certificate ProgramStrategic Human Resources Leadership Cornell Certificate ProgramHuman Resources Management Certificate Program for Indian ExecutivesGlobal Professional Certificate in Effective Leadership and ManagementCSM® Certification TrainingCSPO® Certification TrainingLeading SAFe® 5.1 Training (SAFe® Agilist Certification)SAFe® 5.1 POPM CertificationSAFe® 5.1 Scrum Master Certification (SSM)Implementing SAFe® 5.1 with SPC CertificationSAFe® 5 Release Train Engineer (RTE) CertificationPMP® Certification TrainingPRINCE2® Foundation and Practitioner Certification
Law
Job Linked
Bootcamps
Study Abroad
Master of Business Administration (90 ECTS)Master of Business Administration (60 ECTS)Master in Computer Science (120 ECTS)Master in International Management (120 ECTS)Bachelor of Business Administration (180 ECTS)B.Sc. Computer Science (180 ECTS)MS in Data AnalyticsMS in Project ManagementMS in Information TechnologyMasters Degree in Data Analytics and VisualizationMasters Degree in Artificial IntelligenceMBS in Entrepreneurship and MarketingMSc in Data AnalyticsMS in Data AnalyticsMaster of Science in AccountancyMS in Computer ScienceMaster of Science in Business AnalyticsMaster of Business Administration MS in Data ScienceMS in Information TechnologyMaster of Business AdministrationMS in Applied Data ScienceMaster of Business AdministrationMS in Data AnalyticsM.Sc. Data Science (60 ECTS)Master of Business AdministrationMS in Information Technology and Administrative Management MS in Computer Science Master of Business Administration MBA General Management-90 ECTSMSc International Business ManagementMS Data Science MBA Business Technologies MBA Leading Business Transformation Master of Business Administration MSc Business Intelligence and Data ScienceMS Data Analytics MS in Management Information SystemsMSc International Business and ManagementMS Engineering ManagementMS in Machine Learning EngineeringMS in Engineering ManagementMSc Data EngineeringMSc Artificial Intelligence EngineeringMPS in InformaticsMPS in Applied Machine IntelligenceMS in Project ManagementMPS in AnalyticsMS in Project ManagementMS in Organizational LeadershipMPS in Analytics - NEU CanadaMBA with specializationMPS in Informatics - NEU Canada Master in Business AdministrationMS in Digital Marketing and MediaMS in Project ManagementMaster in Logistics and Supply Chain ManagementMSc Sustainable Tourism and Event ManagementMSc in Circular Economy and Sustainable InnovationMSc in Impact Finance and Fintech ManagementMS Computer ScienceMS in Applied StatisticsMS in Computer Information SystemsMBA in Technology, Innovation and EntrepreneurshipMSc Data Science with Work PlacementMSc Global Business Management with Work Placement MBA with Work PlacementMS in Robotics and Autonomous SystemsMS in Civil EngineeringMS in Internet of ThingsMSc International Logistics and Supply Chain ManagementMBA- Business InformaticsMSc International ManagementMBA in Strategic Data Driven ManagementMaster of Business AdministrationMSc Digital MarketingMBA Business and MarketingMaster of Business AdministrationMSc Digital MarketingMSc in Sustainable Luxury and Creative IndustriesMSc in Sustainable Global Supply Chain ManagementMSc in International Corporate FinanceMSc Digital Business Analytics MSc in International HospitalityMSc Luxury and Innovation ManagementMaster of Business Administration-International Business ManagementMS in Computer EngineeringMS in Industrial and Systems EngineeringMSc International Business ManagementMaster in ManagementMSc MarketingMSc Business ManagementMSc Global Supply Chain ManagementMS in Information Systems and Technology with Business Intelligence and Analytics ConcentrationMSc Corporate FinanceMSc Data Analytics for BusinessMaster of Business AdministrationMaster of Business Administration 60 ECTSMaster of Business Administration 90 ECTSMaster of Business Administration 60 ECTSMaster of Business Administration 90 ECTSBachelors in International ManagementMS Computer Science with Artificial Intelligence and Machine Learning ConcentrationMaster of Business Administration
For College Students

What is Java Pass by Value?

$$/$$

You saw various examples where you passed values into the function and the function performed an action based on these values.  All the functions you saw so far were not interfering with the original variable.

Can a function modify the variable passed into it? Let’s find out.

 

Note: You can download the code used in the video from below :

$$/$$

Video Transcript

 

Hi. You saw some examples of functions in the previous lectures. Now let's explore the mechanism of how they actually work. Till now you saw functions that use the values passed into them to give the result you want. But there is more to this that we will use in this lecture. Can you use a function to change the values passed into it? Say you have to swap two values. Can you use a function where you pass the values to be swapped into the function and the function returns the swap value? Let's try a code from your understanding till now. As you can see, we have two numbers here NUM one and NUM two with values ten and 16 respectively. We are then calling a simple swap function which should help us interchange these values. So with the help of a temporary variable, I am swapping variable two with variable one. But what exactly would happen here? Do the values really change? Let's test this now. Number one and number two values still remain the same here even though we call a swap function. What could have gone wrong? Well, it didn't work the way we thought it would. The initial values remain the same. So the swap function did not change the variables at all. Let's examine what happened. Java actually made copies of the variables NUM one and NUM two and passed those copies to the swap function as parameters variable one and variable two. Therefore, in the function where it swapped variable one and variable two, the function is actually swapping copies of number one and number two rather than the actual variables NUM one and NUM two themselves. And that's why NUM one and NUM two remain unchanged even after you call the function. The reason this happens is because for simple data types java passes a variable by value. The values are copied into the parameters of the function and the function performs its action based on these copied values, leaving the main variables untouched.

 

In order to understand this, imagine you're trying to send a message across a river by a boat. The areas beyond the river is unknown and you probably don't want to travel there by yourself. Here you are equivalent to the variable. Your message is the value and the boat is equivalent to the function. Now suppose that instead of you rowing the boat yourself, you send a recorded message which is essentially a copy of your message. The value of the recorded message reaches the other side while you, the variable, remains safe on this side of the river. Hence the task is done and you also remain safe. This is similar to pass by value. The variable remains unchanged. Only a copy of its value is taken to execute the function. This brings us to an interesting question how do you pass variables into the function instead of their copies? Although it is beyond the scope of discussion at this point you may refer to the links provided below.

 

Video Recap

 

 

  • Functions use values passed into them to give the desired result

  • Functions can be used to change the values passed into them

  • Passing values by value means Java makes copies of the variables and passes them to the function as parameters

  • The function works with copies of the values, leaving the main variables untouched

  • Pass by value is like sending a recorded message across a river, leaving the variable unchanged

  • To pass variables into a function instead of their copies is beyond the scope of this lecture.

 

So, you learnt that Java uses ‘pass by value’, i.e. the values are copied into the parameters of the function, and the function performs its action based on these copied values, leaving the main variables untouched.

 

Now you may be wondering how to use functions to modify the variables. You can achieve the desired results by returning the modified values using a function, storing them in a temporary variable and then reassigning them to the concerned variables.

 

There is another mechanism called ‘pass by reference’ in some programming languages, using which, variables can be modified using functions. Although Java doesn’t support pass by reference, you will learn to achieve the desired results in further modules. You may visit the links provided below to know more.

$$/$$

Additional Reading

  • Read more about passing by value  mechanism here
  • Learn how to do the equivalent of pass by reference in Java here