The method Assertequals (object, object) is ambiguous for the type assert workaround

Source: Internet
Author: User

This error means that there is ambiguity in the method invocation, let's look at the following example:

Assertequals (10L, (Long) 10);

The compiler will quote the method Assertequals (object, object) is ambiguous for the type assert error;

10L is a long, and (long) 10 is a long type. and Assertequals () is an overloaded method in which there is

Assertequals (Object,object)

Assertequals (long, long)

So here's the problem, when we call this method,

Assert (10L, (Long) 10);
The compiler would be embarrassed to say that in the first place all overloaded methods are not compliant.

But because long can be automatically converted (autobox) into long, it can be understood that you want to call Assertequals (Long,long);

But 10L and (Long) 10 are all Object types, so it makes sense to call Assertequals (Object,object).

So there will be ambiguity.


Workaround: The two parameters of Asserteuqls () must be of the same type, so that you can uniquely identify an overloaded method.

The method Assertequals (object, object) is ambiguous for the type assert workaround

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.