answersLogoWhite

0

One possible way (although much less efficient than using the operators directly) is by using BigInteger:

int a = 5, b = 7;

int sum = BigInteger.valueOf(a).add(BigInteger.valueOf(b)).intValue();

However, BigInteger.add() might use arithmetic operators in its own calculations; they are simply hidden from the programmer's view.

User Avatar

Wiki User

15y ago

What else can I help you with?

Continue Learning about Engineering
Related Questions

What are the restriction that are applied to operator overloading?

Java does not support user defined operator overloading.The operator '+' is overloaded in Java and can be used for adding both numbers and Strings.


What does the modulus operator in Java do?

It is an binary arithmetic operator which returns the remainder of division operation. It can used in both floating-point values and integer values. opLeft % opRight where, opLeft is the left operand and opRight is the right operand. This expression is equivalent to the expression opLeft - ((int) (opLeft / opRight) * opRight)


What is a operator overriding in java?

Java does not support object overriding. It does support operator overloading by means of the "+" symbol which is used for both numeric addition as well as string concatenation.


Why are you used new operator in main method in java?

new is used for memory allocation in java which on later automatically deallocated by garbage collector.


Which operator is used to compare strings in Perl?

eq


How do you campaire Strings in java?

String class in Java has an 'equals' method that can be used to compare strings.


What type of operator is used to compare two values?

Conditional operators are used to compare two values. The result of a comparison is either true or false. Boolean data types can hold the values true or false. Here's a list of operators. = Equal to > Greater than < Less than >= Grater than or equal to <= Less than or equal to <> Not equal to


What is different between equals equals and equals method in java?

== (the double equal sign) is used to compare two values (resulting in true if they are equal, false otherwise). = (a single equal sign) is used to assign a value to a variable.


What is a Java scanner used for?

A Java Scanner is used for reading and producing several types of computer values. Using Java Scanners helps one easily read user input. There is a free course one might take to get better acquainted with Java Scanners provided by Java.


What happen when a java keyword new is used in an application?

When the new operator is used, a new object is created, based on the specified class.When the new operator is used, a new object is created, based on the specified class.When the new operator is used, a new object is created, based on the specified class.When the new operator is used, a new object is created, based on the specified class.


What is the difference between requestgetattribute and requestgetParameter in JSP?

request.getAttribute() is used on the Server side Java code to get values submitted from the form onto the Servlet or other java classes request.getParameter() is used on the JSP page to get values sent by the servlet and display it in the jsp page


What is use of new operator is it necessary to be used when object of the class is crated why?

In the case of the Java language, it is necessary. The reason is because that's how creating objects was defined in Java. Note that a method can return an object, so the use of the "new" operator may be hidden: x = SomeClass.someMethod(); In this example, is someMethod() returns an object, x will point to this object; however, the "new" operator is still used in the method someMethod().