Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8302739
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T17:21:34+00:00 2026-06-08T17:21:34+00:00

I read with interest this question : Can I pass parameters by reference in

  • 0

I read with interest this question :
Can I pass parameters by reference in Java?

What comes out it is that parameters (which are not primitives) are passed by copying the reference value.
And so as the example states; you can’t modify the reference of the parameter you gave:

Object o = "Hello";
mutate(o)
System.out.println(o); // Will print Hello

private void mutate(Object o) { o = "Goodbye"; } //NOT THE SAME o!

This kind of problem could be avoided using finallike this :

private void mutate(final Object o) { o = "Goodbye"; } //Compilation error

The questions :

  • Is the final keyword in such a case only used to throw a compilation error ?
  • If in the end you can’t modify the reference of the given parameter why isn’t final implicit or mandatory ?

I rarely used final for method parameters in Java but now I can’t think of any case where you would voluntarily omit to put final to a method parameter.

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T17:21:35+00:00Added an answer on June 8, 2026 at 5:21 pm

    Typically you shouldn’t modify parameters as it can introduce hard to find bugs. However there are some useful idioms and situations where it can be useful:

    public void print(String msg, int count) {
        msg = (msg != null)? msg : "Default";
        while(--count >= 0) {
            System.out.println(msg);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Firstly, I realise that this is a very similar question to this one: Which
I read with interest user sunit 's answer to this question about updating an
Read on before you say this is a duplicate, it's not. (as far as
Read about the issue in this stackoverflow question . Still have the same issue
I read this question in stackoverflow. The excerpt answer provided by bbum is below:
There are a few questions around that circle around this question but I feel
So, this is a common interview question. There's already a topic up, which I
I read with interest this post to StackOverflow: How to Make a Basic Finite
I tried this Java Tip, but was unsuccessful. And by unsuccessful, I mean that
NOTE: I do believe that this is not an openCV related problem but since

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.