- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
学习如何使用 swing 库和 eclipse 编辑器使用 clojure 制作 GUI。目前,我遇到了在 Eclipse 中通过 leiningen 执行应用程序的麻烦。
我在 Java 上制作网格,并尝试将 Java 代码内的所有小部件名称连接到 clojure id,以按照官方 github 文档中指定的方式进一步操作,如下所示:
core.clj
(ns my.core
(:gen-class)
(:use [seesaw.core])
(:require [seesaw.selector :as selector]))
(defn identify
[root]
(doseq [w (select root [:*])]
(if-let [n (.getName w)]
(selector/id-of! w (keyword n))))
root)
(defn my-form
[]
(let [form (identify (my.Gui.))]
form))
(defn -main [& args]
;; With two follow line of code project compiles fine without any errors if replace bottom lines
;; (invoke-later
;; (show! (frame :title "Hello" :content (button :text "Push me")))))
(invoke-later
(let [form (my-form)
output (-> form pack! show!)]
nil))
project.clj
(defproject my "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.8.0"]
[seesaw "LATEST"]]
:main ^:skip-aot my.core
:java-source-paths ["src"])
Gui.java
package my;
import java.awt.EventQueue;
import javax.swing.JFrame;
import com.jgoodies.forms.layout.FormLayout;
import com.jgoodies.forms.layout.ColumnSpec;
import com.jgoodies.forms.layout.RowSpec;
import net.miginfocom.swing.MigLayout;
import javax.swing.JComboBox;
import javax.swing.JRadioButton;
import java.awt.Color;
public class Gui{
private JFrame frame;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Gui window = new Gui();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public Gui() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.getContentPane().setBackground(Color.RED);
frame.setForeground(Color.PINK);
frame.setBackground(Color.ORANGE);
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
JComboBox comboBox = new JComboBox();
comboBox.setName("cmb");
comboBox.setBackground(Color.CYAN);
comboBox.setForeground(Color.CYAN);
comboBox.setBounds(10, 11, 101, 50);
frame.getContentPane().add(comboBox);
JRadioButton rdbtnNewRadioButton = new JRadioButton("New radio button");
rdbtnNewRadioButton.setName("rdbtn");
rdbtnNewRadioButton.setBackground(Color.RED);
rdbtnNewRadioButton.setForeground(Color.MAGENTA);
rdbtnNewRadioButton.setBounds(10, 84, 109, 23);
frame.getContentPane().add(rdbtnNewRadioButton);
}
}
错误消息
Compiling 1 source files to C:\Users\Samsung\my\target\classes
Exception in thread "AWT-EventQueue-0" java.lang.IllegalArgumentException: No implementation of method: :children of protocol: #'seesaw.util/Children found for class: nil
at clojure.core$_cache_protocol_fn.invokeStatic(core_deftype.clj:568)
at clojure.core$_cache_protocol_fn.invoke(core_deftype.clj:560)
at seesaw.util$eval118$fn__119$G__109__124.invoke(util.clj:151)
at clojure.zip$children.invokeStatic(zip.clj:80)
at clojure.zip$down.invokeStatic(zip.clj:115)
at clojure.zip$down.invoke(zip.clj:109)
at seesaw.selector$children_locs.invokeStatic(selector.clj:313)
at seesaw.selector$children_locs.invoke(selector.clj:312)
at seesaw.selector$zip_select_nodes_STAR_$select1__1431.invoke(selector.clj:318)
at seesaw.selector$zip_select_nodes_STAR_$fn__1436.invoke(selector.clj:320)
at clojure.core$map$fn__4785.invoke(core.clj:2644)
at clojure.lang.LazySeq.sval(LazySeq.java:40)
at clojure.lang.LazySeq.seq(LazySeq.java:49)
at clojure.lang.RT.seq(RT.java:521)
at clojure.core$seq__4357.invokeStatic(core.clj:137)
at clojure.core$apply.invokeStatic(core.clj:641)
at clojure.core$mapcat.invokeStatic(core.clj:2674)
at clojure.core$mapcat.doInvoke(core.clj:2674)
at clojure.lang.RestFn.invoke(RestFn.java:423)
at seesaw.selector$zip_select_nodes_STAR_.invokeStatic(selector.clj:320)
at seesaw.selector$zip_select_nodes_STAR_.invoke(selector.clj:315)
at seesaw.selector$select_nodes_STAR_.invokeStatic(selector.clj:324)
at seesaw.selector$select_nodes_STAR_.invoke(selector.clj:322)
at seesaw.selector$select.invokeStatic(selector.clj:364)
at seesaw.selector$select.invoke(selector.clj:358)
at seesaw.core$select.invokeStatic(core.clj:3587)
at seesaw.core$select.invoke(core.clj:3517)
at my.core$identify.invokeStatic(core.clj:8)
at my.core$identify.invoke(core.clj:6)
at my.core$my_form.invokeStatic(core.clj:16)
at my.core$my_form.invoke(core.clj:14)
at my.core$_main$fn__5440.invoke(core.clj:25)
at clojure.lang.AFn.applyToHelper(AFn.java:152)
at clojure.lang.AFn.applyTo(AFn.java:144)
at clojure.core$apply.invokeStatic(core.clj:646)
at clojure.core$apply.invoke(core.clj:641)
at seesaw.invoke$invoke_later_STAR_$fn__744.invoke(invoke.clj:14)
at clojure.lang.AFn.run(AFn.java:22)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758)
at java.awt.EventQueue.access$500(EventQueue.java:97)
at java.awt.EventQueue$3.run(EventQueue.java:709)
at java.awt.EventQueue$3.run(EventQueue.java:703)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:80)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:728)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
无法意识到我哪里做错了,使用 Eclipse 的 Window Builder 插件创建后,Java 代码没有修改,并且 clojure 脚本是通过文档制作的。 Eclipse 的 Window Builder
插件可能已过时,或者不再用于创建 GUI 应用程序。
如有任何意见和建议,我们将不胜感激。
最佳答案
你的线索在这里:
Exception in thread "AWT-EventQueue-0" java.lang.IllegalArgumentException: No implementation of method: :children of protocol: #'seesaw.util/Children found for class: nil
at clojure.core$_cache_protocol_fn.invokeStatic(core_deftype.clj:568)
您正在获取一个 nil
值 (java null
),并尝试通过调用函数 :children
将其视为对象。更多线索:
at my.core$identify.invokeStatic(core.clj:8)
at my.core$identify.invoke(core.clj:6)
at my.core$my_form.invokeStatic(core.clj:16)
at my.core$my_form.invoke(core.clj:14)
at my.core$_main$fn__5440.invoke(core.clj:25)
问题从第 8 行开始:
(ns my.core
(:gen-class)
(:use [seesaw.core])
(:require [seesaw.selector :as selector]))
(defn identify
[root]
(doseq [w (select root [:*])] ; <= ***** PROBLEM IS NEAR HERE *****
(if-let [n (.getName w)]
(selector/id-of! w (keyword n))))
root)
我猜你的构造函数(my.Gui.)
失败并返回了nil
。我将使用 (println :101 some-val)
等行进一步调试,其中 :101
提供了一种向每行添加 ID 的便捷方法。
关于java - Clojure Swing 异常 "No implementation of method: :children",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52616947/
我经常在 C 标准文档中看到“实现定义”的说法,并且非常将其作为答案。 然后我在 C99 标准中搜索它,并且: ISO/IEC 9899/1999 (C99) 中第 §3.12 条规定: 3.12 I
“依赖于实现”中的“实现”是什么意思? “依赖于实现”和“依赖于机器”之间有什么区别? 我使用C,所以你可以用C解释它。 最佳答案 当 C 标准讨论实现时,它指的是 C 语言的实现。因此,C 的实现就
我刚刚在 Android-studio 中导入了我的项目,并试图在其中创建一个新的 Activity。但我无法在 android-studio 中创建 Activity 。我指的是here我看不到将目
我想知道您对为什么会发生此错误的意见。在陆上生产环境中,我们使用 CDH4。在我们的本地测试环境中,我们只使用 Apache Hadoop v2.2.0。当我运行在 CDH4 上编译的同一个 jar
我正在尝试集成第三方 SDK (DeepAR)。但是当我构建它时,它会显示一个错误。我试图修复它。如果我创建一个简单的新项目,它就可以正常工作。但是我现有的应用程序我使用相机和 ndk。请帮我找出错误
我很好奇为什么我们有 @Overrides 注释,但接口(interface)没有类似的习惯用法(例如 @Implements 或 @Implementation)。这似乎是一个有用的功能,因为您可能
我对 DAODatabase(适用于 Oracle 11 xe)的 CRUD 方法的实现感到困惑。问题是,在通常存储到 Map 集合的情况下,“U”方法(更新)会插入新元素或更新它(像 ID:Abst
Java-API 告诉我特定类实现了哪些接口(interface)。但有两种不同类型的信息,我不太确定这意味着什么。例如,对于“TreeSet”类:https://docs.oracle.com/en
我有一个接口(interface) MLService,它具有与机器学习算法的训练和交叉验证相关的基本方法,我必须添加两个接口(interface)分类和预测,它们将实现 MLService 并包含根
我一直想知道如何最好地为所有实现相同接口(interface)的类系列实现 equals()(并且客户端应该只使用所述接口(interface)并且永远不知道实现类)。 我还没有编写自己的具体示例,但
我有一个接口(interface)及其 2 个或更多实现, public interface IProcessor { default void method1() { //logic
我有同一个应用程序的免费版和高级版(几乎相同的代码,相同的类,到处都是“if”, list 中的不同包, list 中的进程名称相同)。主要 Activity 使用 IMPLICIT Intent 调
这是我为我的应用程序中的错误部分编写的代码 - (id)initWithData:(NSData *)data <-------- options:(NSUInteger)opti
请查找随附的代码片段。我正在使用此代码将文件从 hdfs 下载到我的本地文件系统 - Configuration conf = new Configuration(); FileSys
我想在 MongoDB 中使用 Grails2.5 中的“ElasticSearch”插件。我的“BuildConfig.groovy”文件是: grails.servlet.version = "3
我收到一条错误消息: fatal error: init(coder:) has not been implemented 对于我的自定义 UITableViewCell。该单元格未注册,在 Stor
得到这个错误 kotlin.NotImplementedError: An operation is not implemented: not implemented 我正在实现一个 ImageBut
typedef int Element; typedef struct { Element *stack; int max_size; int top; } Stack; //
Playground 代码 here 例子: interface IFoo { bar: number; foo?: () => void; } abstract class Abst
我想知道如何抑制警告: Category is implementing a method which will also be implemented by its primary class. 我
我是一名优秀的程序员,十分优秀!