JPanel与JFrame有啥关系 与不同的

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JPanel与JFrame有啥关系 与不同的相关的知识,希望对你有一定的参考价值。

参考技术A JFrame是顶级容器,而JPanel是普通容器。包含Swing组件的程序必须包含一个顶级容器,而Swing组件不可以直接加入到顶级容器中。Sun文档有下列相关的解释:1、The
containment
hierarchy
for
any
window
or
applet
that
contains
Swing
components
must
have
a
Swing
top-level
container
at
the
root
of
the
hierarchy.
2、You
don
't
add
components
directly
to
a
top-level
container
such
as
a
Jframe,
and
you
should
add
components
to
a
container
(called
the
content
pane)
that
is
itself
contained
by
the
JFrame.
3、Swing
provides
three
generally
useful
top-level
container
classes:
JFrame,
JDialog,
and
JApplet
至于其他的不同,它们既然是不同的类,自然不同了,可以看看API文档。

以上是关于JPanel与JFrame有啥关系 与不同的的主要内容,如果未能解决你的问题,请参考以下文章

Java中的JPanel与JFrame

ContentPane 和 JPanel 有啥关系?

如何从 JFrame 中删除 JPanel?

java中jframe 和jpanel的区别

JFrame 中的沙箱 JPanel

如何在JFrame中使单个JPanel更大