自己写的一个JAVA字符串输入类。英文比较差,请见谅~
/**
*Title:ReadInput.java
*Description:Read the input info of user .More information in http://www.25gy.com
*Copyright:Gongtao 2004
*@author:GongTao
*@version:v1.0
*/
package com.gt;
import java.io.* ;
public class ReadInput
{
/*
*Example: String s = new ReadInput.getString();
*@return:The information of user input
*/
private int i;
private String s="";
ReadInput{
try{
while((i=System.in.read())!=13)
{
s = s+(char)i ;
}
System.in.read();//用来引收10号ASCII,换行
} catch(IOException e){
System.out.println(e.toString());
}
}
/*
*@return: String
*/
public String getString(){
return this.s ;
}
/*
*@return: int
*/
public int getInt()
{
try
{
return new Integer(this.s).intValue();
}catch(NumberFormatException e){
System.out.println(e.toString());
return 0 ;
}
}
}
该博客展示了一个自己编写的 Java 字符串输入类 ReadInput。该类可读取用户输入信息,包含获取字符串和整数的方法,在读取输入时处理了异常情况,还提供了示例代码。
1232

被折叠的 条评论
为什么被折叠?



