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

  • Home
  • SEARCH
  • 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 6095521
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T12:49:17+00:00 2026-05-23T12:49:17+00:00

If I understand it correctly, Integer[] is a subtype of Object[] . You can

  • 0

If I understand it correctly, Integer[] is a subtype of Object[]. You can for instance do

Object[] objs = new Integer[] { 1, 2, 3 };

While playing around with var-args I realized, that it seems like the compiler “over approixmates” the array type for no obvious reason.

The program below for instance, prints 123 123. Wouldn’t it make sense / be more precise if it printed 123 6?

class Test {

    public static Object combine(Object... objs) {

        if (objs instanceof Integer[]) {

            int sum = 0;
            for (Integer i : (Integer[]) objs)
                sum += i;
            return sum;

        } else {

            String concat = "";
            for (Object o : objs)
                concat += o;
            return concat;

        }
    }

    public static void main(String[] args) {
        System.out.println(combine("1", "2", "3"));  // prints 123
        System.out.println(combine(1, 2, 3));        // prints 123
    }
}

I guess my question could be summed up as: Would any contradiction / problem arise if the JLS was defined to pass T[] as argument, where T was the least upper bound of the types of all arguments given?


Edit: I realize that I, in this particular case, could overload the the combine method to take Integer[] as well (ideone demo). Still, the question remains of why this design was chosen.

  • 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-05-23T12:49:18+00:00Added an answer on May 23, 2026 at 12:49 pm

    As to this specific question:

    Would any contradiction / problem arise if the JLS was defined to pass T[] as argument, where T was the least upper bound of the types of all arguments given?

    Yes, because the array is not read-only; it’s writable:

    package com.example.test;
    
    import java.util.Arrays;
    
    public class Varargs3 {
        public static Object[] changeLastArgument(Object... objs) {
            if (objs.length > 0)
                objs[objs.length-1] = "Pow!";
            return objs;
        }
    
        public static void main(String[] args) {
            System.out.println(
                Arrays.toString(changeLastArgument(1,2,3))
            );
        }
    }
    

    which prints

    [1, 2, Pow!]
    

    If the JLS was defined the way you are asking (e.g. for foo(T... args), if you call foo(a,b,c) then the compiler constructs an array of the least upper bound of the types a,b,c), then this case would allow a runtime error: the invocation of changeLastArgument(1,2,3) would create an array of type Integer[], but the changeLastArgument() method would attempt to assign "Pow!" to the last element and you’d get a runtime error.

    The declaration of changeLastArgument() is specifying its input types, and therefore it should be able to assume its input argument is truly an Object[] and not a subtype of Object[], so that it can safely modify the input arguments. (This is similar to the PECS principle — in order for a List<T> to be both safely readable and writable, you can’t use any wildcards like List<? extends T> — which is safely readable but not safely writable — or List<? super T> — which is safely writable but not safely readable.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If I understand correctly, in .NET the default implementation of Object.GetHashCode() returns a value
really can't understand, how to build correctly project that uses boost.python. I've included boost_(python/thread/system)-mt.
If I understand correctly, ClickOnce only checks for prerequisites with the first install of
If I understand correctly the .net runtime will always clean up after me. So
This is just a quick question to understand correctly what happens when you create
If I understand this correctly: Current CPU developing companies like AMD and Intel have
If I understand it correctly this means extern void foo(); that the function foo
Been trying my best to understand this correctly. What is the difference between an
I've just read up on Thread.IsBackground and if I understand it correctly, when it's
Why does this not work? Do I not understand delegate covariance correctly? public delegate

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.