gpt4 book ai didi

java - JOption 从字符串文本调用方法?

转载 作者:太空宇宙 更新时间:2023-11-04 06:47:53 25 4
gpt4 key购买 nike

我不太确定如何问这个问题,但就是这样。请查看我的代码(为了您的方便我将其缩写,并且不用担心它是临时的“Sam”)

public class JeopardyGUI_Main11 extends javax.swing.JFrame {

/**
* Creates new form JeopardyGUI_Main
*/

public JeopardyGUI_Main11() {
initComponents();
setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
}
public void info(){
String[] am = new String[25];
String[] sp = new String[25];
String[] mu = new String[25];
String[] spe = new String[25];
String[] tv = new String[25];
String[] mo = new String[25];

String[] ama = new String[25];
String[] spa = new String[25];
String[] mua = new String[25];
String[] spea = new String[25];
String[] tva = new String[25];
String[] moa = new String[25];

am[0] = "Sam";ama[0] = "Sam";
am[1] = "Sam";ama[1] = "Sam";
...
am[23] = "Sam";ama[23] = "Sam";
am[24] = "Sam";ama[24] = "Sam";

mu[0] = "Sam";mua[0] = "Sam";
mu[1] = "Sam";mua[1] = "Sam";
...
mu[23] = "Sam";mua[23] = "Sam";
mu[24] = "Sam";mua[24] = "Sam";



spe[0] = "Sam";spea[0] = "Sam";
spe[1] = "Sam";spea[1] = "Sam";
...
spe[23] = "Sam";spea[23] = "Sam";
spe[24] = "Sam";spea[24] = "Sam";


tv[0] = "Sam";tva[0] = "Sam";
tv[1] = "Sam";tva[1] = "Sam";
...
tv[23] = "Sam";tva[23] = "Sam";
tv[24] = "Sam";tva[24] = "Sam";


sp[0] = "Sam";spa[0] = "Sam";
sp[1] = "Sam";spa[1] = "Sam";
...
sp[23] = "Sam";spa[23] = "Sam";
sp[24] = "Sam";spa[24] = "Sam";


mo[0] = "Sam";moa[0] = "Sam";
mo[1] = "Sam";moa[1] = "Sam";
...
mo[23] = "Sam";moa[23] = "Sam";
mo[24] = "Sam";moa[24] = "Sam";

int random_int = (int) (Math.random() * ( 0 - 24 ));

String am_qu = am[random_int];
String am_an = ama[random_int];

String sp_qu = sp[random_int];
String sp_an = spa[random_int];

String mu_qu = mu[random_int];
String mu_an = mua[random_int];

String spe_qu = sp[random_int];
String spe_an = spa[random_int];

String tv_qu = tv[random_int];
String tv_an = tva[random_int];

String mo_qu = mo[random_int];
String mo_an = moa[random_int];
}

pack();
setLocationRelativeTo(null);
}// </editor-fold>

private void sp1ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
}


private void sp2ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
}

private void am1ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
Object[] options = {"Yes, please",
"No way!"};
int n = JOptionPane.showOptionDialog(null,
""+am_qu, <-------------------------------------AREA IN QUESTION
"",
JOptionPane.YES_NO_OPTION,
JOptionPane.PLAIN_MESSAGE,
null, //do not use a custom Icon
options, //the titles of buttons
options[0]); //default button title



}

private void mo1ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
}

private void am1MouseClicked(java.awt.event.MouseEvent evt) {
// TODO add your handling code here:
}

/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(JeopardyGUI_Main11.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(JeopardyGUI_Main11.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(JeopardyGUI_Main11.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(JeopardyGUI_Main11.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>

/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new JeopardyGUI_Main11().setVisible(true);
}
});
}

// Variables declaration - do not modify
private javax.swing.JButton am1;
private javax.swing.JButton am2;
private javax.swing.JButton am3;
...
private javax.swing.JButton am4;
private javax.swing.JButton am5;

// End of variables declaration


}

在“有问题的区域”我输入的是问题的位置。 optionDialog 框需要一个字符串作为文本,但我想将其替换为“public void info()”中的字符串,该字符串将使用 Math.Random 进行随机化。

因此,如果我要正确运行 optionDialog,它应该显示为“Sam”(在中间文本区域)。

很抱歉,如果我没有说清楚,请询问任何问题,我会等待回复,谢谢!

最佳答案

下面是一个基本示例,说明了构建程序的不同方式可能会更有效:

public class SO {
public static void main(String[] args) throws ClassNotFoundException{
getinfo();//Set the random question and answer

Object[] options = {"Yes, please", "No way!"};
int n = JOptionPane.showOptionDialog(null,
SO.question,//Reference the question set
"",
JOptionPane.YES_NO_OPTION,
JOptionPane.PLAIN_MESSAGE,
null, //do not use a custom Icon
options, //the titles of buttons
options[0]); //default button title

JOptionPane.showMessageDialog(null, SO.answer);
}

public static void getinfo(){ //Will set question and answer
int category = new Random().nextInt(2 - 0);//Random number to get a category
int choice = new Random().nextInt(2 - 0);//Random to get a selection

SO.question = questions[category][choice];//Get question
SO.answer = answers[category][choice];//Answer is located in same position in answers array
}

/*Each category is represented by a seperate array within the questions
* 2 dimensional array. These are declared as static fields or 'Global fields'
* This way they are easily accessible and only initialised once
*/
private static String[][] questions = new String[][]{
{"Question 1, category 1", "Question 2 category 1"},//questions[0][*] for one category
{"Question 1 category 2", "Question 2 category 2"}//questions[1][*] on another category
};

/*The answers array mirrors the other array so each answer in this 2D array
* is in the same position as the relevant question in the questions array
*
*/
private static String[][] answers = new String[][]{
{"Answer 1 category 1", "Answer 2 category 1"}, //answers[0][*] for questions [0][*]
{"Answer 1 category 2", "Answer 2 category 2"}//answers[1][*] for questions [1][*]
};

//These will each hold a question and an answer
private static String question;
private static String answer;

}

我把它做得小了很多,这样你就可以感受到它是如何工作的。建议您的“全局变量”位于底部。这有望让您获得 JOPtionPane 所需的问题和答案,并防止数组不断重新初始化。

再一次,如果不确定,请回复我,我会看看我能做什么。祝你好运!

关于java - JOption 从字符串文本调用方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23727659/

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