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 173487
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T13:21:11+00:00 2026-05-11T13:21:11+00:00

Since arguments sent to a method in Java point to the original data structures

  • 0

Since arguments sent to a method in Java point to the original data structures in the caller method, did its designers intend for them to used for returning multiple values, as is the norm in other languages like C ?

Or is this a hazardous misuse of Java’s general property that variables are pointers ?

  • 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. 2026-05-11T13:21:11+00:00Added an answer on May 11, 2026 at 1:21 pm

    A long time ago I had a conversation with Ken Arnold (one time member of the Java team), this would have been at the first Java One conference probably, so 1996. He said that they were thinking of adding multiple return values so you could write something like:

    x, y = foo(); 

    The recommended way of doing it back then, and now, is to make a class that has multiple data members and return that instead.

    Based on that, and other comments made by people who worked on Java, I would say the intent is/was that you return an instance of a class rather than modify the arguments that were passed in.

    This is common practice (as is the desire by C programmers to modify the arguments… eventually they see the Java way of doing it usually. Just think of it as returning a struct. 🙂

    (Edit based on the following comment)

    I am reading a file and generating two arrays, of type String and int from it, picking one element for both from each line. I want to return both of them to any function which calls it which a file to split this way.

    I think, if I am understanding you correctly, tht I would probably do soemthing like this:

    // could go with the Pair idea from another post, but I personally don't like that way class Line {     // would use appropriate names     private final int intVal;     private final String stringVal;      public Line(final int iVal, final String sVal)     {         intVal    = iVal;         stringVal = sVal;     }      public int getIntVal()     {         return (intVal);     }      public String getStringVal()     {         return (stringVal);     }      // equals/hashCode/etc... as appropriate } 

    and then have your method like this:

    public void foo(final File file, final List<Line> lines) {     // add to the List. } 

    and then call it like this:

    {     final List<Line> lines;      lines = new ArrayList<Line>();     foo(file, lines); } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 120k
  • Answers 120k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The standard answer is to take two iterators at the… May 12, 2026 at 12:04 am
  • Editorial Team
    Editorial Team added an answer To enforce the order in which conditions are evaluated, use… May 12, 2026 at 12:04 am
  • Editorial Team
    Editorial Team added an answer For one thing, this: [Green|Red] doesn't do what you think… May 12, 2026 at 12:04 am

Related Questions

How do you fix a names mismatch problem, if the client-side names are keywords
My page deals with many Store objects, each of them has a field called
Say I have a class called PermissionManager which should only exist once for my
I was trying to implement the function every :: (a -> IO Bool) ->

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.