作为 NetBeans 用户,我需要了解有关 Java 点语法命名约定的哪些信息

发布于 2024-12-03 11:39:24 字数 476 浏览 0 评论 0原文

...自定义 NetBeans IDE 的外观?对于此更改,需要将此行添加到 netbeans.conf:netbeans_default_options= "[...] --laf com.sun.java.swing.plaf.gtk.GTKLookAndFeel"。其他外观 jar 文件可以使用更简单的关键字设置,即“Nimbus”。

我理解(从另一篇文章中说,如果关键字不起作用,您将必须输入完整的类名)关键字是较长点语法的快捷变量。当我搜索整个系统时,没有找到任何名为“com.sun.java.swing.plaf.gtk.GTKLookAndFeel”或“GTKLookAndFeel”的内容。

我不需要开发人员的视角。只是 Java 文件名的基本情况,因为我在配置和更改 NetBeans 设置、插件等时会遇到它们。


...to customize the look and feel of the NetBeans IDE? For this change it is necessary to add this line to netbeans.conf: netbeans_default_options= "[...] --laf com.sun.java.swing.plaf.gtk.GTKLookAndFeel". Other look and feel jar files can be set with a simpler keyword, ie "Nimbus".

I understand (from another post where it was said if the keyword didn't work you will have to enter the full class name) the keyword is a shortcut variable for the longer dot syntax. When I searched my whole system and didn't find anything named 'com.sun.java.swing.plaf.gtk.GTKLookAndFeel' or 'GTKLookAndFeel'.

I don't need a developer's perspective. Just the basic landscape of Java file names as I should encounter them configuring and changing NetBeans settings, plugins, etc.


如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鲜血染红嫁衣 2024-12-10 11:39:24

类的实际名称和存储它的 jar 的名称之间没有直接的、必然的关系。 com.sun.java.... 部分反映了内部结构(“子目录”) ") 在 jar 文件中。如果 jar 位于类路径上,运行时无论如何都会找到该类。

正如trashgod 已经暗示的那样,GTK 的外观和感觉仅包含在Linux 系统上并且只能在Linux 系统上运行,将其移植到Windows 等系统上是没有用的。

此处解释了为什么某些外观和感觉仅通过指定短名称即可工作的原因:金属、Nimbus、GTK、Windows 和 Aqua 外观和感觉都是内置快捷方式。

There is no direct, necessary relationship between the actual name of the class and the name of the jar it is stored in. The com.sun.java.... part reflects the internal structure ("subdirectories") in the jar file. If the jar is on the classpath, the runtime will find the class anyways.

As trashgod already hinted, the GTK look and feel is only included - and will only work - on Linux systems, no use transplanting it onto eg a Windows box.

The reason why some look and feels work by just specifying a short name is explained here: Metal, Nimbus, GTK, Windows and Aqua look and feels are built-in shortcuts.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文