ShortBuffer equals() 方法在 Java 中


使用 java.nio.ShortBuffer 類中的 equals() 方法可以檢查兩個緩衝區的相等性。如果兩個緩衝區具有相同型別的元素、相同數量的元素和相同的元素序列,則它們是相等的。equals() 方法在緩衝區相等時返回 true,否則返回 false。

以下是一個展示它的程式 -

示例

 線上演示

import java.nio.*;
import java.util.*;
public class Demo {
   public static void main(String[] args) {
      int n = 5;
      try {
         ShortBuffer buffer1 = ShortBuffer.allocate(n);
         buffer1.put((short)12);
         buffer1.put((short)91);
         buffer1.put((short)25);
         buffer1.put((short)18);
         buffer1.put((short)30);
         buffer1.rewind();
         System.out.println("The first ShortBuffer is: " + Arrays.toString(buffer1.array()));
         ShortBuffer buffer2 = ShortBuffer.allocate(n);
         buffer2.put((short)12);
         buffer2.put((short)91);
         buffer2.put((short)25);
         buffer2.put((short)18);
         buffer2.put((short)30);
         buffer2.rewind();
         System.out.println("The second ShortBuffer is: " + Arrays.toString(buffer2.array()));
         boolean flag = buffer1.equals(buffer2);
         if (flag)
            System.out.println("
Both the buffers are equal");          else             System.out.println("
Both the buffers are not equal");       } catch (IllegalArgumentException e) {          System.out.println("Error!!! IllegalArgumentException");       } catch (ReadOnlyBufferException e) {          System.out.println("Error!!! ReadOnlyBufferException");       }    } }

上面程式的輸出如下 -

輸出

The first ShortBuffer is: [12, 91, 25, 18, 30]
The second ShortBuffer is: [12, 91, 25, 18, 30]

Both the buffers are equal

更新於: 30-Jul-2019

96 瀏覽次數

開啟您的 職業

完成課程認證

開始學習
廣告