gpt4 book ai didi

java - Eclipse 不会显示菜单栏、菜单项或 JLabel

转载 作者:行者123 更新时间:2023-12-01 15:55:06 25 4
gpt4 key购买 nike

关于下面的代码,eclipse在第72行到第86行附近给了我很多错误(框架无法解析),我也看不到标签或添加菜单栏,我认为所有问题都是相关的,并且会如果有人能以更有经验的眼光来看待它,我们将不胜感激。埃里克

import java.awt.FlowLayout;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.*;
import javax.swing.*;
import java.awt.*;

import java.awt.event.ActionListener;


public class BookGUI extends JFrame implements ActionListener

{


//String addBook="";
// public ArrayList<Book> books;

//Book books = new Book ("", "", 0, "", 0);
Book book = new Book("", "", 0, "", 0);
String title = "";
String author = "";
int year = 0;
String publisher = "";
double cost = 0;
double total = 0;
boolean goodInput = false;


public BookShelf bookShelf = new BookShelf();
public static final int WIDTH = 400;
public static final int HEIGHT = 100;

//Creates & displays a window of the class FlowLayoutDemo
public static void main(String[] args)
{
BookGUI gui = new BookGUI( );
gui.setVisible(true);
}

// public String getTitle()
// {
// return title;
//}

public void setTitle(String title) //this is relevant
{
this.title = title;
}

public void setAuthor(String author) //this is relevant
{
this.author = author;
}

public void setYear(int year) //this is relevant
{
this.year = year;
}
public void setPublisher(String publisher) //this is relevant
{
this.publisher = publisher;
}

public void setCost(double cost) //this is relevant
{
this.cost = cost;
}

public BookGUI( )
{
frame = new JFrame ("Books");
Container contentpane = frame.getContentPane();

JLabel label = new JLabel ("Book GUI");
contentPane.add(label);

JMenuBar menubar = new JMenuBar();
frame.setJMenuBar(menubar);

frame.pack();
frame.setVisible(true);

JMenuItem quitItem = new JMenuItem("Quit");
fileMenu.add(quitItem);;
contentPane.setBackground(Color.red);

setSize(WIDTH, HEIGHT);
addWindowListener(new WindowDestroyer( ));
setTitle("GUI Assignment");
Container content = getContentPane( );

content.setLayout(new FlowLayout());

JButton button1 = new JButton("Hightest Price Paid");
content.add(button1);
button1.addActionListener(this);
//contentPane.add(button1);

JButton button2 = new JButton("Cost of BookShelf");
content.add(button2);
button2.addActionListener(this);

JButton button3 = new JButton("Size of BookShelf");
content.add(button3);
button3.addActionListener(this);

JButton button4 = new JButton("Add Book");
content.add(button4);
button4.addActionListener(this);

// Alows the class to quit.
//private void quit()
//System.exit(0);
}

public void actionPerformed(ActionEvent e)
{

if (e.getActionCommand().equals("Add Book"))
//book = JOptionPane.showInputDialog("Add Book");
{ //set up the book object with all the data passed in
title = JOptionPane.showInputDialog("Title");
author = JOptionPane.showInputDialog("Author");
publisher = JOptionPane.showInputDialog("Publisher");
//cost = JOptionPane.showInputDialog("Cost");
//cost = Double.parseDouble(JOptionPane.showInputDialog("Cost"));
do{
try {
cost = Double.parseDouble(JOptionPane.showInputDialog("Cost"));
book.setCost(cost);
goodInput = true;
}
catch (NumberFormatException nfe){
JOptionPane.showMessageDialog(this, "Numerical entry required. Please try again");
}
}while (!goodInput);


book.setTitle(title);
book.setAuthor(author);
book.setPublisher(publisher);
bookShelf.addBook(book);

String message = "The title of the book is :" + title +
"the Author of the Book is : " + author + " and it's published by " + publisher + "and it costs" + cost + "euro";
JOptionPane.showMessageDialog(null, message, "Book Details", JOptionPane.PLAIN_MESSAGE);
}
else if (e.getActionCommand().equals("Size of BookShelf")) {
int sizeOfBookShelf = bookShelf.sizeOfBookshelf();
String message = "The book shelf has " + sizeOfBookShelf + " book(s)";
JOptionPane.showMessageDialog(this, message);
}
else if (e.getActionCommand().equals("Cost of BookShelf"))
{
double costOfBookshelf = bookShelf.costOfBookShelf();
String message = "The book shelf value is " + total + costOfBookshelf + "Euro";
JOptionPane.showMessageDialog(this, message);
}

else
{
System.out.println("Error!");
}

System.exit( 0 );

// Alows the class to quit.
//private void quit() {
//System.exit(0);

}
}

最佳答案

frame 无法识别,因为您从未声明过它。

JFrameframe = new JFrame("书籍");

对比

frame = new JFrame("书籍");

但是,您确实扩展了 JFrame。您的意思是使用 this 而不是 frame 吗?

关于java - Eclipse 不会显示菜单栏、菜单项或 JLabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5238228/

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