请帮忙看一下程序,哪儿错的:

5.编程包含一个下拉列表和一个按钮,下拉列表中有10、14、18三个选项。选择10时,按钮中文字的字号为10,选择14时,按钮中文字的字号为14,选择18时,按钮中文字的... 5.编程包含一个下拉列表和一个按钮,下拉列表中有10、14、18三个选项。选择10时,按钮中文字的字号为10,选择14时,按钮中文字的字号为14,选择18时,按钮中文字的字号为18。
import java.awt.*;
import java.awt.event.*;
public class Mybutton4 extends WindowAdapter implements ItemListener
{
Frame fr;
Button bt;
Choice me;

Mybutton4()
{
fr = new Frame("窗体");
fr.addWindowListener(this);
bt = new Button("确定");
me = new Choice();
me.addItemListener(this);

me.add(" "+10);
me.add(" "+14);
me.add(" "+18);

fr.add(bt,"North");
fr.add(me,"Center");

fr.setSize(200,200);
fr.setVisible(true);
}
public static void main(String[] args)
{
new Mybutton4();
}
public void itemStateChanged(ItemEvent e)
{
String te = me.getItem();
if(te == "10")
bt.setFont( 10);
else if(te == "14")
bt.setFont( new Font(14));
else if(te == "18")
bt.setFont( new Font(18));
}
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
}
展开
 我来答
k33076
2013-11-18 · 超过13用户采纳过TA的回答
知道答主
回答量:89
采纳率:0%
帮助的人:31.4万
展开全部
String te = me.getItem();//getItem()里面缺少参数
if(te == "10")
bt.setFont( 10);//参数是Font类,而不是int类型
else if(te == "14")
bt.setFont( new Font(14));//awt.* jar包里面的new Font(14)不是一个参数的
else if(te == "18")
bt.setFont( new Font(18));//awt.* jar包里面的new Font(14)不是一个参数的
guan_yisheng
2013-11-18 · TA获得超过210个赞
知道小有建树答主
回答量:144
采纳率:100%
帮助的人:144万
展开全部

import java.awt.*;

import java.awt.event.*;


public class Mybutton4 extends WindowAdapter implements ItemListener

{

Frame fr;

Button bt;

Choice me;

Font font10=new Font("宋体",Font.PLAIN,10);

Font font14=new Font("宋体",Font.PLAIN,14);

Font font18=new Font("宋体",Font.PLAIN,18);

Mybutton4()

{

fr = new Frame("窗体");

fr.addWindowListener(this);

bt = new Button("确定");

me = new Choice();

me.addItemListener(this);

me.add("10"); //你添加的方法是不对的,给的参数直接是string就可以了

me.add("14");

me.add("18");

fr.add(bt,"North");

    fr.add(me,"Center");


fr.setSize(200,200);

fr.setVisible(true);

}

public static void main(String[] args) 

{

new Mybutton4();

}

public void itemStateChanged(ItemEvent e)

{

String te;

//te = me.getItem(); 这个方法貌似没有

te = me.getSelectedItem();//这个才是找出选项中所选项的方法

if(te == "10")

       bt.setFont(font10);

else if(te == "14")

  bt.setFont( font14);

else if(te == "18")

  bt.setFont(font18);

}

    public void windowClosing(WindowEvent e)

{

       System.exit(0);

}

}

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式