java 小问题
importjava.awt.*;importjava.awt.event.*;importjava.lang.*;importjavax.swing.*;publicc...
import java.awt.*;
import java.awt.event.*;
import java.lang.*;
import javax.swing.*;
public class JComboBoxModelTest extends JFrame{
JComboBox jc=new JComboBox(new MyComboBox());
JLabel jl=new JLabel("请选择证件:");
public JComboBoxModelTest(){
setSize(new Dimension(160,80));
setVisible(true);
setTitle("在窗口中设置下拉列表框");
setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
Container cp=getContentPane();
cp.setLayout(new FlowLayout());
cp.add(jl);
cp.add(jc);
}
public static void main(String[] args) {
new JComboBoxModelTest();
}
}
class MyComboBox extends AbstractListModel implements ComboBoxModel{
String selecteditem=null;
String[] test={"身份证","军人证","学生证","工作证"};
public Object getElementAt(int ndex){
return test[ndex];
}
public int getSize(){
return test.length;
}
public void setSelectedItem(Object item){
selecteditem=(String)item;
}
public Object getSelectedItem(){
return selecteditem;
}
public int getIndex(){
for(int i=0;i<test.length;i++){
if(test[i].equals(getSelectedItem()))
return i;
break;
}
return 0;
}
}
我是想问1。MyComboBox类中的运行流程,怎么运行的,为什么会输出这样的一个下拉列表
2。抽象类里的代码去哪里看?
3。API文档去哪里查看?
谢大哥帮忙,小弟很菜,说的尽量通俗一些,要不小弟看不懂! 展开
import java.awt.event.*;
import java.lang.*;
import javax.swing.*;
public class JComboBoxModelTest extends JFrame{
JComboBox jc=new JComboBox(new MyComboBox());
JLabel jl=new JLabel("请选择证件:");
public JComboBoxModelTest(){
setSize(new Dimension(160,80));
setVisible(true);
setTitle("在窗口中设置下拉列表框");
setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
Container cp=getContentPane();
cp.setLayout(new FlowLayout());
cp.add(jl);
cp.add(jc);
}
public static void main(String[] args) {
new JComboBoxModelTest();
}
}
class MyComboBox extends AbstractListModel implements ComboBoxModel{
String selecteditem=null;
String[] test={"身份证","军人证","学生证","工作证"};
public Object getElementAt(int ndex){
return test[ndex];
}
public int getSize(){
return test.length;
}
public void setSelectedItem(Object item){
selecteditem=(String)item;
}
public Object getSelectedItem(){
return selecteditem;
}
public int getIndex(){
for(int i=0;i<test.length;i++){
if(test[i].equals(getSelectedItem()))
return i;
break;
}
return 0;
}
}
我是想问1。MyComboBox类中的运行流程,怎么运行的,为什么会输出这样的一个下拉列表
2。抽象类里的代码去哪里看?
3。API文档去哪里查看?
谢大哥帮忙,小弟很菜,说的尽量通俗一些,要不小弟看不懂! 展开
3个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询