关于一些java里面JList创建的问题
importjavax.swing.*;importjava.awt.*;importjava.awt.event.*;importjava.io.*;importjav...
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import javax.swing.*;
import java.util.*;
class Handle {
private JFrame frame = new JFrame("Welcome to Test");
private JPanel pan = new JPanel();
private JButton but1 = new JButton("exit");
private JLabel lab = new JLabel();
private Container con = frame.getContentPane();
private JTextArea text = new JTextArea();
private JList list1 = null;
public Handle(){
frame.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e){
System.exit(1);
}
});
String nation[] = {"A","B","C","D","E","F"};
list1 = new JList(nation); // action: 为什么这里编译的时候会出现下面的情况?(注)
con.add(list1);
frame.setLayout(new GridLayout(1,2));
frame.pack();
frame.setVisible(true);
}
}
public class Test{
public static void main(String[]agre){
new Handle();
}
}
注: Test.java使用了未经检查或不安全的操作。
注: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。
为什么”list1 = new JList(nation); “编译的时候会出现以上的情况
而我把”list1 = new JList(nation); “这句注释掉就不会出现这个显示 展开
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import javax.swing.*;
import java.util.*;
class Handle {
private JFrame frame = new JFrame("Welcome to Test");
private JPanel pan = new JPanel();
private JButton but1 = new JButton("exit");
private JLabel lab = new JLabel();
private Container con = frame.getContentPane();
private JTextArea text = new JTextArea();
private JList list1 = null;
public Handle(){
frame.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e){
System.exit(1);
}
});
String nation[] = {"A","B","C","D","E","F"};
list1 = new JList(nation); // action: 为什么这里编译的时候会出现下面的情况?(注)
con.add(list1);
frame.setLayout(new GridLayout(1,2));
frame.pack();
frame.setVisible(true);
}
}
public class Test{
public static void main(String[]agre){
new Handle();
}
}
注: Test.java使用了未经检查或不安全的操作。
注: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。
为什么”list1 = new JList(nation); “编译的时候会出现以上的情况
而我把”list1 = new JList(nation); “这句注释掉就不会出现这个显示 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询