定义一个字符串只能接收长度为5---10之间的字符串,如果不在这个范围就抛出异常。
4个回答
展开全部
简单就是用String委托处理,
例子下面会给出。
ublic class RichString {
// 委托Stirng做操作
private String src = null;
// 构造String,根据你的逻辑判断
public RichString(String src) throws Exception {
if (src != null) {
if (src.length() < 5 || src.length() > 10) {
throw new Exception(
"the length of the richString is between 5 and 10");
}
}
this.src = src;
}
// 获取构建值
public String getString() {
return src;
}
//测试
public static void main(String arf[]) throws Exception {
RichString s2=new RichString("你好,很高兴测试!");
System.out.println(s2.getString());
RichString s1=new RichString("你好!我的长度是在5到10吗?");
System.out.println(s1.getString());
}
}
当然你还可以通过 char[]数组来处理。
例子下面会给出。
ublic class RichString {
// 委托Stirng做操作
private String src = null;
// 构造String,根据你的逻辑判断
public RichString(String src) throws Exception {
if (src != null) {
if (src.length() < 5 || src.length() > 10) {
throw new Exception(
"the length of the richString is between 5 and 10");
}
}
this.src = src;
}
// 获取构建值
public String getString() {
return src;
}
//测试
public static void main(String arf[]) throws Exception {
RichString s2=new RichString("你好,很高兴测试!");
System.out.println(s2.getString());
RichString s1=new RichString("你好!我的长度是在5到10吗?");
System.out.println(s1.getString());
}
}
当然你还可以通过 char[]数组来处理。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class TestString{
private String str;
public void setStr(String s) throws Exception {
if(null == s || s.length() < 5 || s.length() > 10) {
throw new Exception("the length must between 5 and 10.");
}
this.str = s;
}
public String getStr() {
return this.str;
}
}
private String str;
public void setStr(String s) throws Exception {
if(null == s || s.length() < 5 || s.length() > 10) {
throw new Exception("the length must between 5 and 10.");
}
this.str = s;
}
public String getStr() {
return this.str;
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
二楼的最好
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询