编写java程序 学生类和测试类

 我来答
bwpy
2017-05-15 · TA获得超过1604个赞
知道小有建树答主
回答量:1831
采纳率:76%
帮助的人:325万
展开全部
import java.util.LinkedList;

public class StudentTest {
static LinkedList<Student> sl;
public static void main(String[] args) {
sl = new LinkedList<Student>();
Student s1 = new Student(1,"aa",12,"bb");
Student s2 = new Student(2,"ae",42,"br");
Student s3 = new Student(3,"ar",52,"fb");
enQueue(s1);//
enQueue(s2);//
enQueue(s3);//进队
deQueue();//出队

}
public static boolean QueueEmpty()//判断队列是否为空  
  {  
      return sl.isEmpty();  
  }  
public static void enQueue(Student o)//进队  
  {  
      sl.addLast( o);  
  } 
public static Object deQueue()//出队  
  {  
      if(!sl.isEmpty())  
      {  
          return sl.removeFirst();  
      }  
      return "队列为空";  
  }  

}
class Student{
int No;
String name;
int age;
String address;
public Student(int n,String na,int a,String ad){
No = n;
name = na;
age = a;
address = ad;
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式