gpt4 book ai didi

java - 如何使用 JMenuItem 将另一个类调用到我的主菜单类?

转载 作者:行者123 更新时间:2023-12-01 18:04:37 25 4
gpt4 key购买 nike

我不知道如何使用 JMenuItem 调用与主类 (Lista) 位于同一包中的另一个类(称为 Calc)。如果我需要更具体,我不知道如何使用 Lista 类上的 JMenuItem 将我的类 Calc 调用到我的 Lista 类。

下面的代码是我的 Lista 类,对不起英国人

    import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

import javax.swing.event.MenuEvent;
import javax.swing.event.MenuListener;

import javax.swing.*;
import java.awt.event.*;

public class Lista extends JFrame{
public Lista(){
super("Menu");

// Menu Bar
JMenuBar barra = new JMenuBar();
setJMenuBar(barra);

// Menu
JMenu opcoes = new JMenu("Options");

// Menu Item
JMenuItem item = new JMenuItem("Item 1");

// actionlistener
item.addActionListener(
new ActionListener(){
public void actionPerformed(ActionEvent e){
//I think that is in here where i must write the code
}
}
);

opcoes.add(item);

// Adds
barra.add(opcoes);

setSize(300, 150);
setVisible(true);
}

public static void main(String args[]){
Lista app = new Lista();
app.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}

另一个类,Calc,它只是我用以下代码制作的一个简单计算器:公共(public)类 Calc 扩展 JFrame {

public Calc(){
super("Calculadora");
Container tela = getContentPane();
setLayout(null);

JLabel rotulo1 = new JLabel("1 numero: ");
JLabel rotulo2 = new JLabel("2 numero: ");
JLabel showup = new JLabel("");

JTextField texto1 = new JTextField(5);
JTextField texto2 = new JTextField(5);

JButton somar = new JButton ("+");
JButton subtrair = new JButton("-");
JButton dividir = new JButton("/");
JButton multiplicar = new JButton("x");
JButton exibir = new JButton("=");

rotulo1.setBounds(30,20,100,20); rotulo2.setBounds(30,60,100,20);
texto1.setBounds(100,20,200,20); texto2.setBounds(100,60,200,20);
showup.setBounds(125,100,200,20);
somar.setBounds(230,100,45,45);//coluna, linha, largura, comprimento
subtrair.setBounds(280,100,45,45);
dividir.setBounds(230,155,45,45);
multiplicar.setBounds(280,155,45,45);
exibir.setBounds(255,205,45,45);


setVisible(true);
setLocationRelativeTo(null);

tela.add(rotulo1); tela.add(rotulo2);
tela.add(texto1); tela.add(texto2); tela.add(showup);
tela.add(exibir); tela.add(somar); tela.add(subtrair); tela.add(dividir);tela.add(multiplicar);

setSize(350,300);

somar.addActionListener( new ActionListener(){
public void actionPerformed(ActionEvent e){
double numero1, numero2, soma;
soma=0;
numero1 = Double.parseDouble(texto1.getText());
numero2 = Double.parseDouble(texto2.getText());
soma = numero1+numero2;
showup.setVisible(true);
showup.setText(texto1.getText()+""+"+"+""+texto2.getText()+""+"="+soma);
texto1.setText(null); texto2.setText(null); texto1.requestFocus(); //funcao limpar e focar
}
}
);

subtrair.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
double numero1, numero2, subtrair;
subtrair=0;
numero1 = Double.parseDouble(texto1.getText());
numero2 = Double.parseDouble(texto2.getText());
subtrair = numero1 - numero2;
showup.setVisible(true);
showup.setText(texto1.getText()+""+"-"+""+texto2.getText()+""+"="+subtrair);
texto1.setText(null); texto2.setText(null); texto1.requestFocus();
}
});

multiplicar.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
double numero1, numero2, multiplicar;
multiplicar=0;
numero1 = Double.parseDouble(texto1.getText());
numero2 = Double.parseDouble(texto2.getText());
multiplicar = numero1*numero2;
showup.setVisible(true);
showup.setText(texto1.getText()+""+"x"+""+texto2.getText()+""+"="+multiplicar);
texto1.setText(null); texto2.setText(null); texto1.requestFocus();
}
});

dividir.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
double numero1, numero2, dividir;
dividir=0;
numero1 = Double.parseDouble(texto1.getText());
numero2 = Double.parseDouble(texto2.getText());
dividir=numero1/numero2;
showup.setVisible(true);
showup.setText(texto1.getText()+""+"/"+""+texto2.getText()+""+"="+dividir);
texto1.setText(null); texto2.setText(null); texto1.requestFocus();
}
});


}

public static void main (String [] args){
Calc app = new Calc();
app.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}}

我唯一想做的事情是:当我单击Lista代码中的JMenuItem时,我的计算器程序(Calc类)被调用。我已经尝试过这样做:“Calc calc = new Calc(); calc.Visible(true);”或“项目=计算;”但失败了。我是一个初学者程序员,抱歉,我认为这很简单。

最佳答案

从另一个类调用方法的一种简单方法是获取对另一个类的引用并调用该方法。如果另一个类的对象已经存在,则不要通过创建新对象来执行此操作,而是将现有对象的引用传递到此类中。具体如何完成将取决于您尚未向我们展示的代码。

请注意,您的代码只能从一个主方法运行,我敢打赌,它不会是您发布的代码中的主方法,而是来自另一个类中的另一个主方法,但是所有这些都将取决于您尚未向我们展示的代码。您可能在这里检测到一个主题,您应该考虑改进您的问题,显示更相关的代码,包括您计划如何启动这个类,它是否从另一个类启动,另一个类的作用和外观,什么您想从这个类调用的其他类的方法....

更好的处理方法,其中包括 M-V-C ,但是,这可能只会让您在这个阶段感到困惑,但是您最好知道我上面建议的当前解决方案虽然很简单,但并不是最干净的。

看起来您可能正在尝试使用此代码创建并显示第二个 JFrame,如果是这样,您不想这样做。请参阅:The Use of Multiple JFrames, Good/Bad Practice? .

事实上,您最好不要让 Lista 扩展 JFrame,而是让它创建并生成一个 JMenu,然后您可以将其放置在需要的位置和时间,但话又说回来,要完全回答您的问题需要知识从您尚未向我们展示的代码中获得

关于java - 如何使用 JMenuItem 将另一个类调用到我的主菜单类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37642681/

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