- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
此小程序应采用存储在 menuTree 中的树并遵循基于它的菜单构造。
currentNode 存储小程序当前所在的菜单,它的每个子项都应显示为按钮。
单击按钮后,小程序应将您带到一个新菜单,代表单击的按钮。
我无法让按钮在单击另一个按钮时发生变化。
我不是特别确定这棵树是否构建正确,因为它不是特别容易测试。
如有任何帮助,我们将不胜感激。
谢谢。
import javax.swing.*;
import javax.swing.tree.*;
import java.awt.event.*;
import java.awt.*;
public class Menu extends JApplet implements ActionListener{
private static final long serialVersionUID = 2142470002L;
private JTree menuTree;
private DefaultMutableTreeNode currentNode;
private JPanel buttonPanel;
public void init(){
this.setSize(700, 550);
buttonPanel=new JPanel();
buttonPanel.setSize(300, 500);
this.add(buttonPanel);
/**
* will make node out of the first entry in the array, then make nodes out of subsequent entries
* and make them child nodes of the first one. The process is repeated recursively for entries that are arrays.
* this idea of tree declaration as well as the code from the method was lovingly
* stolen from: http://www.apl.jhu.edu/~hall/java/Swing-Tutorial/Swing-Tutorial-JTree.html
*/
Object [] menuNames = { "ROOT",
new Object[] { "Classic Chess",
new Object[] { "Game",
"AI",
"Hotseat",
"Online"
},
"Challenges",
new Object[]{ "Practice",
"Situations",
"Coaching"
},
},
new Object[] { "Fairy Chess",
new Object[] { "Game",
"AI",
"Hotseat",
"Online"
},
"Challenges",
new Object[]{ "Practice",
"Situations",
"Coaching"
},
"Create Pieces"
}
};
currentNode=processHierarchy(menuNames);
menuTree = new JTree(currentNode);
initializeButtons(currentNode);
}
/**
* Clicking one of the buttons(which should be in the children of the currentNode), takes you to that node in the tree
* setting currentNode to that node and redoing buttons to represent its children.
*/
public void actionPerformed(ActionEvent ae){
Button b=(Button)ae.getSource();
for(int i =0; i<currentNode.getChildCount(); i++){
if(b.getLabel().equals(currentNode.getChildAt(i)+"")){
currentNode=(DefaultMutableTreeNode)currentNode.getChildAt(i);
initializeButtons(currentNode);
}
}
}
/**
* will make node out of the first entry in the array, then make nodes out of subsequent entries
* and make them child nodes of the first one. The process is repeated recursively for entries that are arrays.
* this idea of tree declaration as well as the code from the method was lovingly
* stolen from: http://www.apl.jhu.edu/~hall/java/Swing-Tutorial/Swing-Tutorial-JTree.html
*/
private DefaultMutableTreeNode processHierarchy(Object[] hierarchy) {
DefaultMutableTreeNode node = new DefaultMutableTreeNode(hierarchy[0]);
DefaultMutableTreeNode child;
for (int i = 1; i < hierarchy.length; i++) {
Object nodeSpecifier = hierarchy[i];
if (nodeSpecifier instanceof Object[]) // Ie node with children
child = processHierarchy((Object[]) nodeSpecifier);
else
child = new DefaultMutableTreeNode(nodeSpecifier); // Ie Leaf
node.add(child);
}
return (node);
}
/**
* creates buttons for each child of the given node, labels them with their String value, and adds them to the panel.
*/
private void initializeButtons(DefaultMutableTreeNode node){
Button b;
buttonPanel.removeAll();
for(int i =0; i<node.getChildCount(); i++){
b=new Button();
b.setLabel(""+node.getChildAt(i));
buttonPanel.add(b);
}
}
}
最佳答案
按照@Andrew 的帮助大纲,TreeSelectionListener
似乎很合适。参见 How to Use Trees了解详情。应用程序似乎更容易调试。使用 revalidate()
是更新修改后的布局的关键。
import java.awt.BorderLayout;
import java.awt.Button;
import java.awt.Container;
import java.awt.EventQueue;
import java.awt.GridLayout;
import javax.swing.JApplet;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTree;
import javax.swing.event.TreeSelectionEvent;
import javax.swing.event.TreeSelectionListener;
import javax.swing.tree.DefaultMutableTreeNode;
/** @see http://stackoverflow.com/questions/7342713 */
public class Menu extends JApplet {
private JTree menuTree;
private JPanel buttonPanel;
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
JFrame frame = new JFrame();
frame.setTitle("Menu");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
new Menu().initContainer(frame);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
@Override
public void init() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
initContainer(Menu.this);
}
});
}
private void initContainer(Container container) {
container.setLayout(new GridLayout(1, 0));
buttonPanel = new JPanel(new GridLayout(0, 1));
Object[] menuNames = {"ROOT",
new Object[]{"Classic Chess",
new Object[]{"Game", "AI", "Hotseat", "Online"},
"Challenges",
new Object[]{"Practice", "Situations", "Coaching"}
},
new Object[]{"Fairy Chess",
new Object[]{"Game", "AI", "Hotseat", "Online"},
"Challenges",
new Object[]{"Practice", "Situations", "Coaching"},
"Create Pieces"
}
};
DefaultMutableTreeNode currentNode = processHierarchy(menuNames);
menuTree = new JTree(currentNode);
menuTree.setVisibleRowCount(10);
menuTree.expandRow(2);
initializeButtons(currentNode);
container.add(buttonPanel, BorderLayout.WEST);
container.add(new JScrollPane(menuTree), BorderLayout.EAST);
menuTree.addTreeSelectionListener(new TreeSelectionListener() {
@Override
public void valueChanged(TreeSelectionEvent e) {
initializeButtons((DefaultMutableTreeNode)
menuTree.getLastSelectedPathComponent());
}
});
}
private DefaultMutableTreeNode processHierarchy(Object[] hierarchy) {
DefaultMutableTreeNode node = new DefaultMutableTreeNode(hierarchy[0]);
DefaultMutableTreeNode child;
for (int i = 1; i < hierarchy.length; i++) {
Object nodeSpecifier = hierarchy[i];
if (nodeSpecifier instanceof Object[]) {
child = processHierarchy((Object[]) nodeSpecifier);
} else {
child = new DefaultMutableTreeNode(nodeSpecifier);
}
node.add(child);
}
return (node);
}
private void initializeButtons(DefaultMutableTreeNode node) {
Button b;
buttonPanel.removeAll();
for (int i = 0; i < node.getChildCount(); i++) {
b = new Button();
b.setLabel("" + node.getChildAt(i));
buttonPanel.add(b);
buttonPanel.revalidate();
}
}
}
关于Java JApplet : Button-Tree problem,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7342713/
我使用以下语句对句子进行了分块: grammar = '''
在空间索引方面更喜欢 R+-Tree 而不是 R-Tree 的主要原因是什么?据我所知,R+-Tree 避免节点重叠导致更复杂的代码、更复杂的除法算法等。 R*-tree 与 R-tree 非常相似,
我有这个通用树实现,但在编写递归树比较时遇到此错误。在第 89 行,我收到此错误:没有用于调用“Tree::operator==(Tree&, Tree&) const”的匹配函数这是我的代码: #i
除了 GIS 应用程序,还有哪些其他应用程序或库使用 R 树及其变体? 最佳答案 电脑游戏经常如此。 Here's a link to something cool . 计算机图形学——包括软件和硬件
我正在使用名为 collective.virtualtreecategories 的附加产品在 plone 中生成一棵树。但是,我不断收到奇怪的 javascript 错误,无法显示树。 在我的浏览器
我必须检查一个节点是否属于 lisp 中的一棵树,但我不知道为什么它不起作用。 这是我的代码: (defun number-of-elems (l) (cond ((null l) 0)
我对以下树的术语感到困惑,我一直在研究树,但无法区分这些树: a) 完全二叉树 b) 严格二叉树 c) 完整二叉树 请帮我区分这些树。这些树何时何地在数据结构中使用? 最佳答案 完美的树:
我在应用程序的多个页面上使用相同的 dijit.Tree View ,并且我希望将 cookie 保存为服务器名称,而不是文件夹名称。 现在我有 3 个页面和 3 个 cookie,每个页面都有自己的
我想知道是否有一个现有的单词来描述我当前正在使用的流程。我想称之为“压扁一棵树”,但我觉得一定有更好的词或短语。 输入: |--D --B | |--C | A-E | | |--G --F
我正在尝试理解 nltk.tree 模块。我很困惑为什么当打印 nltk.tree.Tree 对象时,它不打印出地址。相反,它打印出树的字符串表示形式。 我查看了 nltk.tree 中的源代码,但我
我想构建 2 个树结构。第一个树将包含节点,每个节点都有我的 Range 对象的列表: class Range { public DateTime Start { get; set; }
有人有一个带有图标和来自服务的数据源的 mat-tree 示例吗? Stackblitz 上的一个例子会很棒。 最佳答案 使用 https://stackblitz.com/edit/ng-mat-t
我意识到答案可能是存在多个有效的此类实例(例如整数;总和、乘积……的情况)。也许有人有比这更令人满意的答案? 正如 Joachim Breitner 在此答案中出色地解释的那样 How do you
我在 powerbuilder 中使用树数据窗口。这代表了树和表的混合。 我的问题是:树没有明显区分可扩展和不可扩展节点。如果一个节点不可展开,该节点前面的图标仍然是加号,如果我点击加号,树会在当前节
下午好! 我有决策树的问题。 f11<-as.factor(Z24train$f1) fit_f1 <- rpart(f11~TSU+TSL+TW+TP,data = Z24train,method=
对于处理语言,如在常规字典单词中,阅读速度更快,是基数树还是常规 b 树?有没有更快的方法,例如带有桶和散列的字典? 最佳答案 与往常一样,您需要在应用程序上下文中进行基准测试才能确定。 但是,我希望
我正在使用 Doctrine's 2 Tree-Nestedset extension使用 MySQL IndoDB 数据库。 yml 表架构如下所示: Ext\Entity\PageElement:
我正在尝试在我的光线追踪器中遍历 3D KD 树。树是正确的,但我的遍历算法似乎有问题,因为与使用蛮力方法相比,我遇到了一些错误(一些小表面积似乎被忽略了)。 注意:所讨论的光线都不平行于任何轴。 这
我正在使用nltk.tree.Tree来读取基于选区的解析树。我需要找到从树中的一个特定单词到另一个单词所需移动的节点路径。 一个简单的例子: 这是句子“saw the dogs”的解析树: (VP
我正在研究为我的应用程序组合自定义存储方案的可能性。我认为,重新发明轮子的努力是值得的,因为性能和存储效率都是主要目标,并且其上的数据和操作比 RDBMS 提供的所有内容(无更新、无删除、预定义查询集
我是一名优秀的程序员,十分优秀!