gpt4 book ai didi

java - 错误: Main method not found in class Text,请将main方法定义为:public static void main(String[] args)

转载 作者:行者123 更新时间:2023-12-01 23:15:56 27 4
gpt4 key购买 nike

我是编码的半初学者,遇到了这个问题。

Error: Main method not found in class Text, please define the main method as:    public static void main(String[] args).

我只是不知道在哪里修复它。

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTextField;

public class Text extends JFrame
{

ImageIcon aries = new ImageIcon ("aries.jpg");
JPanel jp = new JPanel();
JLabel jl = new JLabel();
JTextField jt = new JTextField("Month",30);
JTextField jt2 = new JTextField("Date",30);
JButton jb = new JButton("Enter");

public Text()
{
setTitle("Tutorial");
setVisible(true);
setSize(400, 200);
setDefaultCloseOperation(EXIT_ON_CLOSE);

jp.add(jt);
jp.add(jt2);

jt.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
String input = jt.getText();
jl.setText(input);
}
});

jp.add(jb);
jb.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
String input = jt.getText();
String input2 = jt2.getText();
jl.setText(input);
jl.setText(input2);
int day = Integer.parseInt(input2);
if ((input.equals("Test")) && (input2.equals(day >= 26)))//||(input2.equals("27")))))
JOptionPane.showMessageDialog(null, "" , "" ,JOptionPane.PLAIN_MESSAGE,aries);
}

});

add(jp);

}

}

最佳答案

JVM 准确地告诉您出了什么问题:您无法在没有 main 方法的情况下运行类——所以给它一个。请查看任何 Java 入门书籍或教程,因为这些内容通常出现在第一章中。例如,请查看here .

关于java - 错误: Main method not found in class Text,请将main方法定义为:public static void main(String[] args),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21213044/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com