Why doesn't Java autoboxing extend to method invocations of methods of the autoboxed types?

前端 未结 8 1027
时光取名叫无心
时光取名叫无心 2020-12-30 18:19

I want to convert a primitive to a string, and I tried:

myInt.toString();

This fails with the error:

int cannot be derefere         


        
相关标签:
8条回答
  • 2020-12-30 18:55

    Ditto on what Justin said, but you should do this instead:

    Integer.toString(myInt);
    

    It saves an allocation or two and is more readable.

    0 讨论(0)
  • 2020-12-30 18:58

    In C#, integers are neither reference types nor do they have to be boxed in order for ToString() to be called. They are considered objects in the Framework (as a ValueType, so they have value semantics), however. In the CLR, methods on primitives are called by "indirectly" loading them onto the stack (ldind).

    0 讨论(0)
  • 2020-12-30 18:58

    As everyone has pointed out, autoboxing lets you simplify some code, but you cannot pretend that primitives are complex types.

    Also interesting: "autoboxing is a compiler-level hack" in Java. Autoboxing is basically a strange kludge added onto Java. Check out this post for more details about how strange it is.

    0 讨论(0)
  • 2020-12-30 19:00

    The valid syntax closest to your example is

    ((Integer) myInt).toString();
    

    When the compiler finishes, that's equivalent to

    Integer.valueOf(myInt).toString();
    

    However, this doesn't perform as well as the conventional usage, String.valueOf(myInt), because, except in special cases, it creates a new Integer instance, then immediately throws it away, resulting in more unnecessary garbage. (A small range of integers are cached, and access by an array access.) Perhaps language designers wanted to discourage this usage for performance reasons.

    Edit: I'd appreciate it if the downvoter(s) would comment about why this is not helpful.

    0 讨论(0)
  • 2020-12-30 19:01

    It would be helpful if Java defined certain static methods to operate on primitive types and built into the compiler some syntactic sugar so that

    5.asInteger
    

    would be equivalent to

    some.magic.stuff.Integer.asInteger(5);
    

    I don't think such a feature would cause incompatibility with any code that compiles under the current rules, and it would help reduce syntactic clutter in many cases. If Java were to autobox primitives that were dereferenced, people might assume that it was mapping the dereferencing syntax to static method calls (which is effectively what happens in .NET), and thus that operations written in that form were no more costly than would be the equivalent static method invocations. Adding a new language feature that would encourage people to write bad code (e.g. auto-boxing dereferenced primitives) doesn't seem like a good idea, though allowing dereferencing-style methods might be.

    0 讨论(0)
  • 2020-12-30 19:03

    Java autoboxing/unboxing doesn't go to the extent to allow you to dereference a primitive, so your compiler prevents it. Your compiler still knows myInt as a primitive. There's a paper about this issue at jcp.org.

    Autoboxing is mainly useful during assignment or parameter passing -- allowing you to pass a primitive as an object (or vice versa), or assign a primitive to an object (or vice versa).

    So unfortunately, you would have to do it like this: (kudos Patrick, I switched to your way)

    Integer.toString(myInt);
    
    0 讨论(0)
提交回复
热议问题