Java菜鸟 自动装箱和拆箱有关问题

Java初学者求助 自动装箱和拆箱问题
定义了一个Studnt 类 代码如下:
public class Student {
private Object javase;
private Object oracle;

public Student(Object javase,Object oracle)
{
super();
this.javase=javase;
this.oracle=oracle;
}
}
调用时 public class App {
public static void main(String[] args)
{
Student stu =new Student(80,90);
}
}
Student stu =new Student(80,90);这一句报错,提示是好像构造器问题
我看教学视频中说这样会自动装箱拆箱,int-->integer-->Object
可是为什么会报错,请大神指点,不胜感激


------解决方案--------------------
自动装箱时JDK1.5的特性,请确保你安装了JDK5以上的版本,另外在你的项目兼容性设置里,确保设为了1.5或以上。

项目兼容性设置在(Eclipse为例):
打开项目属性->Java Compiler->勾选Enable Project Specific Settings->Compiler compliance level设置为1.5或以上
------解决方案--------------------
自动装箱/拆箱是指 int 和 Integer 之间,double 和 Double 之间等等,而不是 Object。下面是个例子:
int n = 0;
Integer _n = new Integer("100");
n = _n;  // 这里做了自动拆箱,将 Integer 对象 _n 拆成基本型别 int