java.nio.DoubleBuffer类的equals()方法用于检查给定的缓冲区是否等于另一个对象。
当且仅当两个双缓冲区相等时,
- 它们具有相同的元素类型,
- 它们具有相同数量的剩余元素,并且
- 其余元素的两个序列(与它们的起始位置无关)是按点排列的
等于。
如果(a == b)||,则此方法认为两个双元素a和b相等。 (Double.isNaN(a)&& Double.isNaN(b))。与Double.equals(Object)不同,值-0.0和+0.0被视为相等。
一个双缓冲区不等于任何其他类型的对象。
用法:
public boolean equals(Object ob)
参数:此方法将ob(与该缓冲区进行比较的对象)作为参数。
返回值:仅当此缓冲区等于给定对象时,此方法返回true。
下面是说明equals()方法的示例:
示例1:
// Java program to demonstrate
// equals() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the DoubleBuffer 1
int capacity1 = 10;
// Declaring the capacity of the DoubleBuffer 2
int capacity2 = 10;
// Creating the DoubleBuffer
try {
// creating object of Doublebuffer 1
// and allocating size capacity
DoubleBuffer db1 = DoubleBuffer.allocate(capacity1);
// creating object of Doublebuffer 2
// and allocating size capacity
DoubleBuffer db2 = DoubleBuffer.allocate(capacity2);
// putting the value in Doublebuffer 1
db1.put(8.56F);
db1.put(2, 9.61F);
db1.rewind();
// putting the value in Doublebuffer 2
db2.put(8.56F);
db2.put(2, 9.61F);
db2.rewind();
// print the DoubleBuffer 1
System.out.println(" DoubleBuffer 1: "
+ Arrays.toString(db1.array()));
// print the DoubleBuffer 2
System.out.println(" DoubleBuffer 2: "
+ Arrays.toString(db2.array()));
// checking the equality of both DoubleBuffer
boolean dbb = db1.equals(db2);
// checking if else condition
if (dbb)
System.out.println("both are equal");
else
System.out.println("both are not equal");
}
catch (IllegalArgumentException e) {
System.out.println("IllegalArgumentException catched");
}
catch (ReadOnlyBufferException e) {
System.out.println("ReadOnlyBufferException catched");
}
}
}
输出:
DoubleBuffer 1: [8.5600004196167, 0.0, 9.609999656677246, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0] DoubleBuffer 2: [8.5600004196167, 0.0, 9.609999656677246, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0] both are equal
示例1:
// Java program to demonstrate
// equals() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the DoubleBuffer 1
int capacity1 = 10;
// Declaring the capacity of the DoubleBuffer 2
int capacity2 = 5;
// Creating the DoubleBuffer
try {
// creating object of Doublebuffer 1
// and allocating size capacity
DoubleBuffer db1 = DoubleBuffer.allocate(capacity1);
// creating object of Doublebuffer 2
// and allocating size capacity
DoubleBuffer db2 = DoubleBuffer.allocate(capacity2);
// putting the value in Doublebuffer 1
db1.put(8.56F);
db1.put(2, 9.61F);
db1.rewind();
// putting the value in Doublebuffer 2
db2.put(8.56F);
db2.put(2, 9.61F);
db2.rewind();
// print the DoubleBuffer 1
System.out.println(" DoubleBuffer 1: "
+ Arrays.toString(db1.array()));
// print the DoubleBuffer 2
System.out.println(" DoubleBuffer 2: "
+ Arrays.toString(db2.array()));
// checking the equality of both DoubleBuffer
boolean dbb = db1.equals(db2);
// checking if else condition
if (dbb)
System.out.println("both are equal");
else
System.out.println("both are not equal");
}
catch (IllegalArgumentException e) {
System.out.println("IllegalArgumentException catched");
}
catch (ReadOnlyBufferException e) {
System.out.println("ReadOnlyBufferException catched");
}
}
}
输出:
DoubleBuffer 1: [8.5600004196167, 0.0, 9.609999656677246, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0] DoubleBuffer 2: [8.5600004196167, 0.0, 9.609999656677246, 0.0, 0.0] both are not equal
相关用法
- Java DoubleBuffer slice()用法及代码示例
- Java DoubleBuffer asReadOnlyBuffer()用法及代码示例
- Java DoubleBuffer array()用法及代码示例
- Java DoubleBuffer duplicate()用法及代码示例
- Java DoubleBuffer compact()用法及代码示例
- Java DoubleBuffer hasArray()用法及代码示例
- Java DoubleBuffer wrap()用法及代码示例
- Java DoubleBuffer rewind()用法及代码示例
- Java DoubleBuffer arrayOffset()用法及代码示例
- Java DoubleBuffer compareTo()用法及代码示例
- Java DoubleBuffer allocate()用法及代码示例
- Java Set equals()用法及代码示例
- Java Map equals()用法及代码示例
- Java DoubleBuffer put()方法用法及代码示例
- Java DoubleBuffer get()用法及代码示例
注:本文由纯净天空筛选整理自pawan_asipu大神的英文原创作品 DoubleBuffer equals() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。