java用swing的一个小程序 不知道哪错了

packageguess;importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;publicclassM... package guess;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class Main {
public static void main(String[] args) {
public class FahrenheitPanel extends JPanel
{
private JLabel inputLabel, outputLabel, resultLabel;
private JTextField fahrenheit;
public FahrenheitPanel()
{
inputLabel = new JLabel (
"Enter Fahrenheit temperature:");
outputLabel = new JLabel (
"Temperature in Celsius: ");
resultLabel = new JLabel ("---");
fahrenheit = new JTextField (5);
add (inputLabel);
add (fahrenheit);
add (outputLabel);
add (resultLabel);
setPreferredSize (new Dimension(300, 75));
setBackground (Color.yellow);
}
fahrenheit.addActionListener (new TempListener());

private class TempListener implements ActionListener{
public void actionPerformed (ActionEvent event)
{
int fahrenheitTemp, celsiusTemp;
String text = fahrenheit.getText();
fahrenheitTemp = Integer.parseInt (text);
celsiusTemp = (fahrenheitTemp-32) * 5/9;
resultLabel.setText (
Integer.toString (celsiusTemp));
}
}
}

}
展开
 我来答
紫薇参星
科技发烧友

2012-10-23 · 有一些普通的科技小锦囊
知道大有可为答主
回答量:5983
采纳率:92%
帮助的人:3571万
展开全部
你的程序我帮你改好了,你看看吧。(改动的地方见注释)
package guess;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class Main {
public static void main(String[] args) {
JFrame jf=new JFrame();//这里加一句
FahrenheitPanel fp=new FahrenheitPanel(); //这里加一句
jf.add(fp);//这里加一句
jf.setSize(300, 75);//这里加一句
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//这里加一句
jf.setVisible(true);//这里加一句
}
}
class FahrenheitPanel extends JPanel//这里把类移出main函数并且去掉public
{
private JLabel inputLabel, outputLabel, resultLabel;
private JTextField fahrenheit;
public FahrenheitPanel()
{
inputLabel = new JLabel (
"Enter Fahrenheit temperature:");
outputLabel = new JLabel (
"Temperature in Celsius: ");
resultLabel = new JLabel ("---");
fahrenheit = new JTextField (5);
add (inputLabel);
add (fahrenheit);
add (outputLabel);
add (resultLabel);
setPreferredSize (new Dimension(300, 75));
setBackground (Color.yellow);
fahrenheit.addActionListener(new TempListener());//把这句移到FahrenheitPanel()函数里面

}

private class TempListener implements ActionListener{
public void actionPerformed (ActionEvent event)
{
int fahrenheitTemp, celsiusTemp;
String text = fahrenheit.getText();
fahrenheitTemp = Integer.parseInt (text);
celsiusTemp = (fahrenheitTemp-32) * 5/9;
resultLabel.setText (
Integer.toString (celsiusTemp));
}
}
}
神牧林
2012-10-23 · TA获得超过360个赞
知道小有建树答主
回答量:544
采纳率:0%
帮助的人:306万
展开全部
不能在主函数里面定义类
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
po...n@126.com
2012-10-23 · 贡献了超过100个回答
知道答主
回答量:100
采纳率:0%
帮助的人:30.2万
展开全部
你的程序写的很乱啊,好像是写的时候定义的类的位置不对吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
inclulu816
2012-10-23
知道答主
回答量:2
采纳率:0%
帮助的人:3101
展开全部
别再main里面写啊
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式