- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好的,我现在遇到的问题是我在“public class MagazineView extends Applet {”处遇到错误,我得到“空白字段 Jlist 可能尚未初始化”
这是我的 GUI 小程序
public class MagazineView extends Applet {
Button button, button2;
final MagazineList Jlist;
public void init() {
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//NORTH PANEL
JPanel northPanel = new JPanel(new BorderLayout());
JPanel topPanel = new JPanel(new BorderLayout());
JLabel label = new JLabel("Add Magazine: ");
final JTextField text1 = new JTextField();
JButton button = new JButton("List Magazines");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
final String name=text1.getText();
Magazine mag = new Magazine(name);
Jlist.insert(mag);
}
});
topPanel.add(label, BorderLayout.LINE_START);
topPanel.add(text1, BorderLayout.CENTER);
topPanel.add(button, BorderLayout.LINE_END);
//CENTER PANEL
JPanel centerPanel = new JPanel(new BorderLayout());
JTextArea atext = new JTextArea();
centerPanel.add(atext, BorderLayout.CENTER);
//BOTTOM PANEL
JPanel bottomPanel = new JPanel(new BorderLayout());
JLabel label2 = new JLabel("Delete All: ");
JTextField text2 = new JTextField();
JButton button2 = new JButton("Delete Magazine");
bottomPanel.add(label2, BorderLayout.LINE_START);
bottomPanel.add(text2, BorderLayout.CENTER);
bottomPanel.add(button2, BorderLayout.LINE_END);
northPanel.add(topPanel, BorderLayout.NORTH);
northPanel.add(centerPanel, BorderLayout.CENTER);
northPanel.add(bottomPanel, BorderLayout.SOUTH);
//Frame
frame.add(northPanel);
frame.setSize(600, 400);
frame.setVisible(true);
}
}
这是我的方法
public class MagazineList {
private MagazineNode list;
public MagazineList(){
list=null;
}
public void insert (Magazine mag){
MagazineNode node = new MagazineNode(mag);
node.next = list;
list = node;
}
public void add (Magazine mag){
MagazineNode node = new MagazineNode (mag);
MagazineNode current;
if(list==null)
list = node;
else
{
current = list;
while(current.next !=null)
current = current.next;
current.next = node;
}
}
public void DeleteNode(Magazine mag)
{
if(list == null) throw new RuntimeException("Cannot delete, Empty List");
if( list.magazine.equals(mag) )
{
list = list.next;
return;
}
MagazineNode cur = list;
MagazineNode prev = null;
while(cur != null && !cur.magazine.equals(mag) )
{
prev = cur;
cur = cur.next;
}
if(cur == null) throw new RuntimeException("Cannot delete, not in list");
//delete cur node
prev.next = cur.next;
}
public String toString(){
String result ="";
MagazineNode current = list;
while (current !=null){
result += current.magazine + "\n";
current = current.next;
}
return result;
}
private class MagazineNode {
public Magazine magazine;
public MagazineNode next;
public MagazineNode(Magazine mag){
magazine = mag;
next = null;
}
}
}
最佳答案
如果是在头部插入节点,则不需要遍历链表。您的 list
变量是链表的头部,因此让您的新节点指向它并使其成为头部。
/**
* Add a new node containing the input Magazine to the front of the linked list.
*
* @param mag A magazine to put at the head of the list.
*/
public void add (Magazine mag){
MagazineNode node = new MagazineNode(mag);
node.next = list;
list = node;
}
您可能希望将名称 list
更改为 head
。请注意,这不需要任何 if
语句。顺便说一下,您不必显示 GUI 代码。
关于java - 链表插入使用头部插入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16493054/
head 元素包含了所有的头部标签元素。在 head 元素中你可以插入脚本(scripts), 样式文件(CSS),及各种meta信息。 可以添加在头部区域的元素标签为: title , styl
这个问题只是为了澄清一些事情。以前有人问过类似的问题,现在把它们归为一个问题——JavaScript 应该放在 HTML 文档中的什么位置,或者更重要的是,它重要吗?所以,我要问的一件事是,确实
HTML 中的 <head> 标签是所有头部标签的容器,这些头部标签用来定义有关 HTML 文档的元数据(描述数据的数据)以及所需资源的引用(例如 CSS 样式文件、JavaScript
我想通过 yui3 注入(inject) iframe head。示例代码在 FF 中有效,但 IE9 显示错误“YUI is not define”。我不知道在 IE9 中会发生什么。
我想复制 Kickstarter 应用程序中的效果,当用户向上滚动且表格 View 已位于开头时,标题 View 的大小会增加。 要查看效果,只需打开一个随机项目并向上滚动即可。 你知道如何实现这样的
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 6 年前。 Improve th
在 iframe 加载时,我将 google 分析片段插入 iframe 文档 HEAD 中。 然后代码片段将插入此脚本 在父文档 HEAD 中,我希望将其插入到 iframe 文档 HEAD 中.
在此demo , 如果我使用 (no wrap) 或 (onLoad),我会得到不同的输出。 我的问题是,在 html 文件中,要获得正确的警报:1,2,3,4 需要对代码进行哪些更改?通过简单的 d
我想知道是否可以在 javascript 弹出窗口中向用户显示完整的 html 页面。完整的 html 是指具有自己的编码、头部和主体的 html 代码。它有自己的字体、样式、脚本等... 另外,假设
我的第一个网页作业遇到了麻烦,我才第一年,之前没有任何经验。我的问题是,当我尝试将背景 img 应用于 body 时,它会在头部应用一个简单的样式集,但是当我在我的 css 中应用相同的代码时它会失败
我正在使用express-handlebars在我的项目中存在以下问题: 问题我希望能够添加从 View 内部调用的部分将此类标签添加到我的整体 View 头部。 示例: 景色 {{#layout/m
我想将脚本添加到站点的头部,以便目标 html 的头部看起来像这样 *some code...* . 有了这个脚本就完美了: var head = document.getElementsByTagN
我想使用链接标签将一些 CSS 注入(inject)头部。我可以使用 很容易地让它工作 var linkNode = document.createElement('link'); linkNode.
你如何能够使用 javascript 将页面中间的 css 链接注入(inject)到头部 ... styles here code 我需要某种 javascript 来将 goog
我想创建一个 HTML 网络组件,我需要导入 CSS 文件,但我想将它注入(inject)到我的影子 dom 中。我有一些代码如下: import introHTML from './Intro.ht
我是一名优秀的程序员,十分优秀!