markSupported()
方法markSupported()方法在java.io包中可用。
markSupported()方法用于检查此流是否支持mark()
方法。
markSupported()方法是一个非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。
在检查mark()
支持时,markSupported()方法不会引发异常。
语法:
public boolean markSupported();
参数:
它不接受任何参数。
返回值:
方法的返回类型为boolean,当此流支持方法时返回true,mark()
否则返回false。
示例
// Java程序演示示例 //的布尔markSupported()方法 // CharArrayReader- import java.io.*; public class MarkSupportedOfCAR { public static void main(String[] args) { CharArrayReader car_stm = null; char[] c_arr = { 'a', 'b', 'c', 'd' }; try { //实例化CharArrayReader- car_stm = new CharArrayReader(c_arr); //通过使用markSupported()isto方法 //检查此流是否支持mark() //是否 boolean status = car_stm.markSupported(); System.out.println("car_stm.markSupported(): " + status); } catch (Exception ex) { System.out.print("Stream Not Supported mark()!!!!"); } finally { //释放所有链接的系统资源 //关闭后与流一起 //流 if (car_stm != null) car_stm.close(); } } }
输出结果
car_stm.markSupported(): true