java.lang.Integer.sum()是java中的內置方法,該方法返回其參數的總和。該方法按照+運算符將兩個整數相加。
用法:
public static int sum(int a, int b)
參數:該方法接受兩個要相互添加的參數:
a:第一個整數值。
b:第二個整數值。
返回值:該方法返回其參數的總和。
異常:當結果溢出一個int時,該方法將引發ArithmeticException。
例子
Input: a = 170, b = 455 Output: 625 Input: a = 45, b = 45 Output: 90
以下程序說明了Java.lang.Integer.sum()方法:
程序1:為正數。
// Java program to illustrate the
// Java.lang.Integer.sum() method
import java.lang.*;
public class Geeks {
public static void main(String[] args)
{
int a = 62;
int b = 18;
// It will return the sum of two arguments.
System.out.println("The sum is =" + Integer.sum(a, b));
}
}
輸出:
The sum is =80
程序2:以下示例程序旨在說明異常。
// Java program to illustrate the
// Java.lang.Integer.sum() method
import java.lang.*;
public class Geeks {
public static void main(String[] args)
{
// When very large integer is taken
int a = 92374612162;
int b = 181;
// It will return the sum of two arguments.
System.out.println("The sum is =" + Integer.sum(a, b));
}
}
輸出:
prog.java:8: error: integer number too large: 92374612162 int a = 92374612162; ^ 1 error
相關用法
- Java Integer valueOf()用法及代碼示例
- Java Integer reverse()用法及代碼示例
- Java Integer intValue()用法及代碼示例
- Java Integer rotateLeft()用法及代碼示例
- Java Integer reverseBytes()用法及代碼示例
- Java Integer rotateRight()用法及代碼示例
- Java Integer toOctalString()用法及代碼示例
- Java Integer floatValue()用法及代碼示例
- Java Integer lowestOneBit()用法及代碼示例
- Java Integer highestOneBit()用法及代碼示例
- Java Integer compare()用法及代碼示例
- Java Integer compareUnsigned()用法及代碼示例
- Java Integer byteValue()用法及代碼示例
- Java Integer bitCount()用法及代碼示例
- Java Integer shortValue()用法及代碼示例
注:本文由純淨天空篩選整理自ankita_chowrasia大神的英文原創作品 Integer sum() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。