黑马程序员技术交流社区
标题:
代码求解
[打印本页]
作者:
冯国强
时间:
2013-11-23 17:49
标题:
代码求解
public class Test3 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Lamp currentLamp = Lamp.Greenlamp;
System.out.println(currentLamp);
Lamp nextLamp=currentLamp.nextLamp();
System.out.println(nextLamp);
Lamp nextLamps=nextLamp.nextLamp();
System.out.println(nextLamps);
}
public enum Lamp{
//元素列表
Redlamp("Red","Green"),Greenlamp("Green","Yellow"),Yellowlamp("Yellow","Red");
//构造函数
private Lamp(String name,String next)
{
this.name=name;
this.next=next;
}
public String name;
public String next;
public Lamp nextLamp()
{ Lamp nextLamp=null;
if(next!=null)
{
nextLamp=Lamp.valueOf(next);
}
return nextLamp;
}
}
}
请问,这上面是什么错误?为什么编译器会报错呢?
作者:
中关村阿旺
时间:
2013-11-23 18:04
nextLamp=Lamp.valueOf(next);你这行代码改为:
nextLamp=Lamp.valueOf(next+"lamp");
你看你枚举的对象都是:Redlamp,Greenlamp,Yellowlamp,都有lamp后缀。
valueOf(String)的方法是把一个字符串编程枚举对象,但是你传入的字符串缺少后缀啊。
作者:
FFF
时间:
2013-11-24 00:05
如果问题已经解决,请及时修改主题为“提问结束”。
修改主题的方法链接
http://bbs.itheima.com/thread-89313-1-1.html
如果没有解决,可能你的问题问得不够清楚。可以重新发问的哦~
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2