当前位置: 代码迷 >> Java相关 >> 看看这里的this 是什么意思?
  详细解决方案

看看这里的this 是什么意思?

热度:431   发布时间:2004-12-07 15:03:00.0
看看这里的this 是什么意思?

//LoginDialogDemo.java import java.awt.*; import javax.swing.*; import java.awt.event.*;

public class LoginDialogDemo extends JFrame { JButton button = new JButton("Click Me"); JPanel panel = new JPanel(new FlowLayout());

public LoginDialogDemo() { final JFrame frame = this; this.getContentPane().add(panel,BorderLayout.SOUTH); panel.add(button); button.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { showLoginDialog(frame); } }); this.setSize(300,200); this.setTitle("显示登陆对话框"); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.show(); }

void showLoginDialog(JFrame frame){ JPanel p = new JPanel(new GridLayout(0,1)); JTextField tfUserName = new JTextField(); JPasswordField tfPassword = new JPasswordField(); p.add(new JLabel("Username: ")); p.add(tfUserName); p.add(new JLabel("Password: ")); p.add(tfPassword); if (JOptionPane.showConfirmDialog(frame // may want to pass your application frame here ,p ,"Login" ,JOptionPane.OK_CANCEL_OPTION ,JOptionPane.PLAIN_MESSAGE ) == JOptionPane.OK_OPTION) { System.out.println("User Name:"+tfUserName.getText()); System.out.println("Password:" + new String(tfPassword.getPassword())); } }

public static void main(String[] args) { LoginDialogDemo frame = new LoginDialogDemo(); } }

看看这里的this 是什么意思?

搜索更多相关的解决方案: frame  public  void  button  

----------------解决方案--------------------------------------------------------

public static void main(String[] args) { LoginDialogDemo frame = new LoginDialogDemo(); ========================

是这里的呢还是当前窗口的 我也不知道了


----------------解决方案--------------------------------------------------------
怎么没有人来说啊???????????
----------------解决方案--------------------------------------------------------

就是当前对象的意思啊!!!在程序里不用写(默认是这个)


----------------解决方案--------------------------------------------------------
  相关解决方案