Java 的内部类和匿名内部类问题 如何让下面代码中匿名内部类的代码执行显示出来
importjava.awt.Color;importjavax.swing.JFrame;publicclassUtitimer001{//内部类classMyFrea...
import java.awt.Color;
import javax.swing.JFrame;
public class Utitimer001 {
// 内部类
class MyFream extends JFrame{
public MyFream() {
this.setBounds(500, 100, 500, 500);
this.getContentPane().setBackground(Color.green);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.setVisible(true);
}
}
public Utitimer001() {
new MyFream();
}
public static void main(String[] args) {
// 匿名内部类 如何调用aa方法
new JFrame (){
void aa(){
this.setBounds(500, 700, 500, 500);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.getContentPane().setBackground(Color.BLUE);
this.setVisible(true);
}
};
new Utitimer001();
}
} 展开
import javax.swing.JFrame;
public class Utitimer001 {
// 内部类
class MyFream extends JFrame{
public MyFream() {
this.setBounds(500, 100, 500, 500);
this.getContentPane().setBackground(Color.green);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.setVisible(true);
}
}
public Utitimer001() {
new MyFream();
}
public static void main(String[] args) {
// 匿名内部类 如何调用aa方法
new JFrame (){
void aa(){
this.setBounds(500, 700, 500, 500);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.getContentPane().setBackground(Color.BLUE);
this.setVisible(true);
}
};
new Utitimer001();
}
} 展开
3个回答
展开全部
实际上,在上面的代码中一处只添加 .aa()即可,已在NETBEANS中验证,背景是BLUE的。不过建议将new Utitimer001();注释掉,试试看看。
import java.awt.Color;
import javax.swing.JFrame;
public class Utitimer001 {// 内部类
class MyFream extends JFrame
{
public MyFream()
{ this.setBounds(500, 100, 500, 500);
this.getContentPane().setBackground(Color.green);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.setVisible(true);
}
}
public Utitimer001()
{
new MyFream();
}
public static void main(String[] args) {// 匿名内部类 如何调用aa方法
new JFrame (){
void aa(){
this.setBounds(500, 700, 500, 500);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.getContentPane().setBackground(Color.BLUE);
this.setVisible(true);
}
}.aa();//就是此处添加了.aa()
// new Utitimer001();
}
}
import java.awt.Color;
import javax.swing.JFrame;
public class Utitimer001 {// 内部类
class MyFream extends JFrame
{
public MyFream()
{ this.setBounds(500, 100, 500, 500);
this.getContentPane().setBackground(Color.green);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.setVisible(true);
}
}
public Utitimer001()
{
new MyFream();
}
public static void main(String[] args) {// 匿名内部类 如何调用aa方法
new JFrame (){
void aa(){
this.setBounds(500, 700, 500, 500);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.getContentPane().setBackground(Color.BLUE);
this.setVisible(true);
}
}.aa();//就是此处添加了.aa()
// new Utitimer001();
}
}
展开全部
你的匿名内部类需要引用
JFrame jf = new JFrame (){
void aa(){
this.setBounds(500, 700, 500, 500);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.getContentPane().setBackground(Color.BLUE);
this.setVisible(true);
}
};
jf.aa();//这样就能调用 理论上......
JFrame jf = new JFrame (){
void aa(){
this.setBounds(500, 700, 500, 500);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.getContentPane().setBackground(Color.BLUE);
this.setVisible(true);
}
};
jf.aa();//这样就能调用 理论上......
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
MyFream myfream = new MyFream();
myfream.MyFream();
myfream.MyFream();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询