java MyEclipse 提示Type mismatch: cannot convert from int to String

下面是超类源代码packageboat;publicclassBoat{privateStringstateNo;privatedoublelength;privateS... 下面是超类源代码
package boat;
public class Boat {
private String stateNo;
private double length;
private String facturer;
private int year;
public Boat(String astateNo,double alength,String afacturer,int ayear)
{setstateNo(astateNo);
setlength(alength);
setfacturer(afacturer);
setyear(ayear);}
public void setstateNo(String astateNo)
{stateNo=astateNo;}
public void setlength(double alength)
{length=alength;}
public void setfacturer(String afacturer)
{facturer=afacturer;}
public void setyear(int ayear)
{year=ayear;}
public String getstateNo()
{return stateNo;}
public double getlength()
{return length;}
public String getfacturer()
{return facturer;}
public int getyear()
{return year;}}
下面是powerboat类
package boat;
public class Sailboat extends Boat{
private double keelDepth;
private int noSails;
private String motorType;
public Sailboat(String astateNo,double alength,String afacturer,int ayear,
double akeelDepth,int anosails,String amotorType)
{super(astateNo,alength,afacturer,ayear);
setkeelDepth(akeelDepth);
setnoSails(anosails);
setmotorType(amotorType);}
public void setkeelDepth(double akeelDepth)
{keelDepth=akeelDepth;}
public void setnoSails(int anosails)
{noSails=anosails;}
public void setmotorType(String amotorType)
{motorType=amotorType;}
public double getkeelDepth()
{return keelDepth;}
public int getnoSails()
{return noSails;}
public String getmotorType()
{return motorType;}
}
下面是有错误的test类(部分)
{Sailboat fb=new Sailboat("mo123456",28,"tartan",1998,4.11,2,"inboard");
展开
 我来答
wangdongqing92
2015-08-07
知道答主
回答量:10
采纳率:0%
帮助的人:6.4万
展开全部
两者的结构类型不一致,不可强制赋值,可以先实现转化类型
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
推荐于2017-11-25
展开全部
不是告诉你错误了,不能把int转换成String,你还要转?
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友2f61011855
2015-08-07 · TA获得超过250个赞
知道小有建树答主
回答量:234
采纳率:0%
帮助的人:93.1万
展开全部
年月日为什么要用double和int?从没见过这么处理的,都是传日期字符串,然后处理字符串。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
超级hahha_a
2015-08-06
知道答主
回答量:7
采纳率:0%
帮助的人:2.8万
展开全部
强转出错了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式