- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
这将创建一个 3 行 4 列的 jframe。我正在尝试实现一个与字母匹配的内存游戏。截至目前,代码匹配,但字母不是随机放置的。我在网上找不到任何关于此的信息。我还想知道它们是否是我可以用来更改 GUI 背景的方法。
public class matchinggame implements ActionListener {
JPanel p;
JFrame f;
String[][] matchList = { {"a", "a"}, {"b", "b"},
{"c", "c" }, {"d", "d"}, {"e", "e"},
{"f", "f"}, {"g", "g" }};
JButton[][] buttons;
int i = 0;
boolean flipping = true;
int cardOne;
int secIndex;
public static void main(String[] args) {
//Schedule a job for the event-dispatching thread
//to create application and display its GUI
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
matchinggame app = new matchinggame();
app.makeGUI();
}
});
}
public void dealCards(JPanel panel) {
buttons = new JButton[3][]; // array of buttons used to represent cards
for (int i= 0; i< 3*4; i++) { // initialize 3 rows with 4 columns each
if (i%4 == 0) buttons[i/4] = new JButton[4];
buttons[i/4][i%4] = new JButton("-Match-"); // show face down
buttons[i/4][i%4].addActionListener(this);
panel.add(buttons[i/4][i%4]);
}
}
public void updateMatchList(String a, String b, boolean add) {
int i,j;
String[][] courseList;
int oldLen = matchList.length;
if (add) { // add the new item to the list
courseList = new String[oldLen+1][];
courseList[0] = new String[2];
courseList[0][0] = new String(a); // new first course
courseList[0][1] = new String(b); // new first course num
for (int item=1; item<= oldLen; item++) {
courseList[item][0] = matchList[item-1][0];
courseList[item][1] = matchList[item-1][1];
}
matchList = courseList;
} else { // delete matching item
courseList = new String[oldLen-1][];
courseList[0] = new String[2];
courseList[0][0] = new String(a); // new first course
courseList[0][1] = new String(b); // new first course num
for (int item=0; item<= oldLen; item++) {
if (a != courseList[item][0]) { // no match so OK to copy over
courseList[item][0] = matchList[item][0];
courseList[item][1] = matchList[item][1];
}
}
matchList = courseList;
}
}
/**
* Creates the JFrame and its UI components.
*/
public void makeGUI() {
JFrame frame = new JFrame("CS435F08 - Java Match Game Starter");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
p = new JPanel(new GridLayout(3,4));
p.setPreferredSize(new Dimension(500, 300));
dealCards(p);
frame.getContentPane().setLayout(new BorderLayout());
frame.getContentPane().add(p,BorderLayout.CENTER);
// Display the window.
frame.pack();
frame.setSize(500, 500);
frame.setVisible(true);
}
public void actionPerformed(ActionEvent e) {
int r,c;
if (i<2) { //find the card clicked on and flip it over
for (r=0; r< 3; r++) {
for (c=0; c< 4; c++) {
// if the card is not face down (showing "-Match-") don't flip it
if ((e.getSource()== buttons[r][c]) && buttons[r][c].getText().equals("-Match-")){
// flip the card face-up to show text from matchList
// looks up text based upon indexes
buttons[r][c].setText(matchList[(r*4+c)/2][(r*4+c)%2]);
i++; // increment number of cards flipped
if (i==1) cardOne = (r*4+c)/2; // save which pattern was shown first
else secIndex = (r*4+c)/2; // save the pattern shown second
return;
}
}
}
} else { // 2 cards already flipped, put all cards face down
for (r=0; r< 3; r++) {
for (c=0; c< 4; c++) {
if (cardOne == secIndex) { // first and second cards flipped match
if (!buttons[r][c].getText().equals("-Match-")) // don't change the face down cards
buttons[r][c].setText("*******"); // once matched, show the removed pattern
} else if ((!buttons[r][c].getText().equals("*******")) && (!buttons[r][c].getText().equals("-Match-"))) {
buttons[r][c].setText("-Match-"); // if 2 face up cards didn't match, flip face down again
}
}
i=0; // new turn, no cards flipped face up
}
}
}
}
最佳答案
我将 matchList 更改为一维数组。这样,我就可以在 shuffleCards 方法中随机播放文本。
这是 GUI。
我修复了您的 Action 监听器的一些问题。
这是格式化的代码。
package com.ggl.testing;
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class MatchingGame implements ActionListener {
JPanel p;
JFrame f;
String[] matchList = { "a", "a", "b", "b", "c", "c", "d", "d", "e", "e",
"f", "f", "g", "g" };
String[] shuffledList;
JButton[][] buttons;
boolean flipping = true;
int i = 0;
int cardOne;
int secIndex;
public static void main(String[] args) {
// Schedule a job for the event-dispatching thread
// to create application and display its GUI
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
MatchingGame app = new MatchingGame();
app.makeGUI();
}
});
}
public void dealCards(JPanel panel) {
buttons = new JButton[3][]; // array of buttons used to represent cards
shuffleCards();
for (int i = 0; i < 3 * 4; i++) { // initialize 3 rows with 4 columns
// each
if (i % 4 == 0)
buttons[i / 4] = new JButton[4];
buttons[i / 4][i % 4] = new JButton("-Match-"); // show face down
buttons[i / 4][i % 4].addActionListener(this);
panel.add(buttons[i / 4][i % 4]);
}
}
public void shuffleCards() {
List<String> list = Arrays.asList(matchList);
Collections.shuffle(list);
shuffledList = list.toArray(new String[list.size()]);
}
public void updateMatchList(String a, String b, boolean add) {
String[] courseList;
int oldLen = matchList.length;
if (add) { // add the new item to the list
courseList = new String[oldLen + 2];
courseList[0] = new String(a); // new first course
courseList[1] = new String(b); // new first course num
for (int item = 2; item <= oldLen; item += 2) {
courseList[item] = matchList[item - 2];
courseList[item + 1] = matchList[item - 1];
}
matchList = courseList;
} else { // delete matching item
courseList = new String[oldLen - 2];
int matchItem = 0;
for (int item = 0; item <= oldLen; item += 2) {
if (a != matchList[item]) { // no match so OK to copy over
courseList[item] = matchList[matchItem];
courseList[item + 1] = matchList[matchItem + 1];
matchItem += 2;
}
}
matchList = courseList;
}
}
/**
* Creates the JFrame and its UI components.
*/
public void makeGUI() {
JFrame frame = new JFrame("CS435F08 - Java Match Game Starter");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
p = new JPanel(new GridLayout(3, 4));
p.setPreferredSize(new Dimension(500, 300));
dealCards(p);
frame.getContentPane().setLayout(new BorderLayout());
frame.getContentPane().add(p, BorderLayout.CENTER);
// Display the window.
frame.pack();
frame.setSize(500, 500);
frame.setVisible(true);
}
public void actionPerformed(ActionEvent e) {
int r, c;
if (i < 2) { // find the card clicked on and flip it over
for (r = 0; r < 3; r++) {
for (c = 0; c < 4; c++) {
// if the card is not face down (showing "-Match-") don't
// flip it
if ((e.getSource() == buttons[r][c])
&& buttons[r][c].getText().equals("-Match-")) {
// flip the card face-up to show text from matchList
// looks up text based upon indexes
buttons[r][c].setText(shuffledList[(r * 4 + c)]);
i++; // increment number of cards flipped
if (i == 1)
cardOne = (r * 4 + c); // save which pattern was
// shown first
else
secIndex = (r * 4 + c); // save the pattern
// shown second
return;
}
}
}
} else { // 2 cards already flipped, put all cards face down
for (r = 0; r < 3; r++) {
for (c = 0; c < 4; c++) {
// first and second cards flipped
if (shuffledList[cardOne].equals(shuffledList[secIndex])) {
// match
// don't change the face down cards
if (!buttons[r][c].getText().equals("-Match-"))
// once matched, show the removed pattern
buttons[r][c].setText("*******");
} else if ((!buttons[r][c].getText().equals("*******"))
&& (!buttons[r][c].getText().equals("-Match-"))) {
// if 2 face up cards didn't match, flip face down again
buttons[r][c].setText("-Match-");
}
}
i = 0; // new turn, no cards flipped face up
}
}
}
}
关于java - 需要帮助在内存游戏中随机化数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30309246/
我有这个问题: 我们声称对 float 使用相等测试是不安全的,因为算术运算会引入舍入错误,这意味着两个应该相等的数字实际上并不相等。 对于这个程序,您应该选择一个数字 N,并编写一个程序来显示 1
为什么这个脚本的输出是 5 而不是 8 ? 我认为 -- 意味着 -1 两次。 var x = 0; var y = 10; while ( x
我现在可以从 cmd 窗口中执行的 FFmpeg 过程中读取最后一行。 使用脚本主机模型对象引用此源。 Private Sub Command1_Click() Dim oExec
使用 vlookup,当匹配发生时,我想从匹配发生的同一行显示工作表 2 中 C 列的值。我想出的公式从 C 列表 2 中获取值,但它从公式粘贴在表 3 上的行中获取,而不是从匹配发生的位置获取。 这
我在破译 WCF 跟踪文件时遇到了问题,我希望有人能帮助我确定管道中的哪个位置发生了延迟。 “Processing Message XX”的跟踪如下所示,在事件边界和传输到“Process Actio
我有四个表,USER、CONTACT、CONACT_TYPE 和 USER_CONTACT USER_CONTACT 存储用户具有填充虚拟数据的表的所有联系人如下 用户表 USER_ID(int)|
以下有什么作用? public static function find_by_sql($sql="") { global $database; $result_set = $data
我正在解决 JavaBat 问题并且对我的逻辑感到困惑。 这是任务: Given a day of the week encoded as 0=Sun, 1=Mon, 2=Tue, ...6=Sat,
我正在研究一些 Scala 代码,发现这种方法让我感到困惑。在匹配语句中,sublist@ 是什么?构造?它包含什么样的值(value)?当我打印它时,它与 tail 没有区别,但如果我用尾部替换它,
我正在使用以下代码自行缩放图像。代码很好,图像缩放也没有问题。 UIImage *originImg = img; size = newSize; if (originImg.size.width >
Instruments 无法在我的 iPad 和 iPhone 上启动。两者都已正确配置,我可以毫无问题地从 xcode 调试它们上的代码,但 Instruments 无法启动。 我听到的只是一声嘟嘟
我想用 iPhone 的 NSRegularExpression 类解析此文本: Uploaded652.81 GB 用于摘录上传和652.81文本。 最佳答案 虽然我确实认为 xml 解析器更适合解
我找到了 solution在 Stackoverflow 上,根据过滤器显示 HTML“li”元素(请参阅附件)。本质上基于 HTML 元素中定义的 css 类,它填充您可以从中选择的下拉列表。 我想
这是一个简单的问题,但我是在 SQL 2005 中形成 XML 的新手,但是用于形成如下所示表中的 XML 的最佳 FOR XML SQL 语句是什么? Column1 Column2 -
我在 www.enigmafest.com 有一个网站!您可以尝试打开它!我面临的问题是,在预加载器完成后,主页会出现,但其他菜单仍然需要很长时间才能加载,而且声音也至少需要 5 分钟! :( 我怎样
好吧,我正在尝试用 Haskell 来理解 IO,我想我应该编写一个处理网页的简短小应用程序来完成它。我被绊倒的代码片段是(向 bobince 表示歉意,但公平地说,我并不想在这里解析 HTML,只是
如何使用背景页面来突出显示网站上的某个关键字,无论网站是什么(谷歌浏览器扩展)?没有弹出窗口或任何东西,它只是在某人正在查看的网站上编辑关键字。我以前见过这样的,就是不明白怎么做!谢谢你的帮助。 最佳
我是 Javascript 新手,需要一些帮助。 先看图片: . 积分预测器应用程序。 基本上当用户通过单选按钮选择获胜团队时它应该在积分栏中为获胜队添加 10 分,并且并根据得分高的球队自动对表格进
这是我的情况 - 我要发送一份时事通讯,我试图做的是,当用户单击电子邮件中的链接时,它会重定向到我的网页,然后会弹出一个灯箱,显示视频。我无法在页面加载时触发灯箱,因为您可以在查看灯箱之前转到同一页面
我有这个代码。 ¿Cuanto es ? Ir 我想获取用户输入的“验证码”值。我尝试这个但行不通。有什么帮助吗? var campo = d
我是一名优秀的程序员,十分优秀!