Java ShortBuffer toString()方法及示例
java.nio.ShortBuffer 中的 toString() 方法是用来返回一个总结此缓冲区状态的字符串。
语法:
public String toString()
返回值 :该方法返回一个摘要字符串。
下面是说明 toString() 方法的例子。
程序1 :
// Java program to demonstrate
// toString() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// creating Shortbuffere
ShortBuffer bb = ShortBuffer.allocate(100);
bb.put((short)20);
bb.put((short)30);
// using toString method
System.out.println(bb.toString());
}
}
输出:
java.nio.HeapShortBuffer[pos=2 lim=100 cap=100]
程序2 :
// Java program to demonstrate
// toString() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// creating Shortbuffere
ShortBuffer bb = ShortBuffer.allocate(300);
bb.put((short)20);
bb.put((short)30);
bb.rewind();
// using toString method
System.out.println(bb.toString());
}
}
输出:
java.nio.HeapShortBuffer[pos=0 lim=300 cap=300]