java.nio.ShortBuffer的array()方法用於返回支持此緩衝區的short數組(可選)。
對該緩衝區內容的修改將導致返回數組的內容被修改,反之亦然。
在調用此方法之前,請先調用hasArray方法,以確保此緩衝區具有可訪問的後備數組。
用法:
public final short[] array()
參數:該方法不帶任何參數。
返回值:該方法返回支持緩衝區的數組。
異常:
- ReadOnlyBufferException,如果緩衝區由數組支持但為隻讀
- UnsupportedOperationException,如果此緩衝區不受可訪問數組的支持
以下示例程序旨在說明array()方法的使用:
程序1:
// Java program to demonstrate
// array() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the ShortBuffer
int capacity = 10;
// Creating the ShortBuffer
try {
// creating object of Shortbuffer
// and allocating size capacity
ShortBuffer sb = ShortBuffer.allocate(capacity);
// putting the value in Shortbuffer
sb.put((short)856);
sb.put(2, (short)9);
sb.rewind();
// getting array from fb ShortBuffer using array() method
short[] sbb = sb.array();
// printing the ShortBuffer fb
System.out.println("ShortBuffer: "
+ Arrays.toString(sbb));
}
catch (IllegalArgumentException e) {
System.out.println("IllegalArgumentException catched");
}
catch (ReadOnlyBufferException e) {
System.out.println("ReadOnlyBufferException catched");
}
}
}
輸出:
ShortBuffer: [856, 0, 9, 0, 0, 0, 0, 0, 0, 0]
程序2:顯示ReadOnlyBufferException
// Java program to demonstrate
// array() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the sb
int capacity1 = 10;
// Declaring the capacity of the sb1
int capacity2 = 5;
// Creating the ShortBuffer
try {
//
// sb
//
// creating object of Shortbuffer sb
// and allocating size capacity
ShortBuffer sb = ShortBuffer.allocate(capacity1);
// putting the value in sb
sb.put((short)96);
sb.put(2, (short)7);
sb.put(3, (short)41);
sb.rewind();
// print the ShortBuffer
System.out.println("ShortBuffer sb: "
+ Arrays.toString(sb.array()));
//
// sb1
//
// creating object of Shortbuffer sb1
// and allocating size capacity
ShortBuffer sb1 = ShortBuffer.allocate(capacity2);
// putting the value in sb1
sb1.put(1, (short)445);
sb1.put(2, (short)64);
sb1.rewind();
// print the ShortBuffer
System.out.println("\nShortBuffer sb1: "
+ Arrays.toString(sb1.array()));
// Creating a read-only copy of ShortBuffer
// using asReadOnlyBuffer() method
ShortBuffer readOnlysb = sb.asReadOnlyBuffer();
// print the ShortBuffer
System.out.print("\nReadOnlyBuffer ShortBuffer: ");
while (readOnlysb.hasRemaining())
System.out.print(readOnlysb.get() + ", ");
// try to change readOnlysb
System.out.println("\n\nTrying to get the array"
+ " from ReadOnlysb for editing");
short[] sbarr = readOnlysb.array();
}
catch (IllegalArgumentException e) {
System.out.println("IllegalArgumentException catched");
}
catch (ReadOnlyBufferException e) {
System.out.println("Exception thrown: " + e);
}
}
}
輸出:
ShortBuffer sb: [96, 0, 7, 41, 0, 0, 0, 0, 0, 0] ShortBuffer sb1: [0, 445, 64, 0, 0] ReadOnlyBuffer ShortBuffer: 96, 0, 7, 41, 0, 0, 0, 0, 0, 0, Trying to get the array from ReadOnlysb for editing Exception thrown: java.nio.ReadOnlyBufferException
相關用法
- Java ShortBuffer put(int, short)用法及代碼示例
- Java ShortBuffer slice()用法及代碼示例
- Java ShortBuffer toString()用法及代碼示例
- Java ShortBuffer rewind()用法及代碼示例
- Java ShortBuffer reset()用法及代碼示例
- Java ShortBuffer limit()用法及代碼示例
- Java ShortBuffer mark()用法及代碼示例
- Java ShortBuffer hashCode()用法及代碼示例
- Java ShortBuffer isDirect()用法及代碼示例
- Java ShortBuffer hasArray()用法及代碼示例
- Java ShortBuffer equals()用法及代碼示例
- Java ShortBuffer duplicate()用法及代碼示例
- Java ShortBuffer compact()用法及代碼示例
- Java ShortBuffer order()用法及代碼示例
- Java ShortBuffer compareTo用法及代碼示例
注:本文由純淨天空篩選整理自IshwarGupta大神的英文原創作品 ShortBuffer array() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。