本帖最后由 惠晖 于 2012-12-9 21:22 编辑
class Student
{
}
classDemo
{
public static void main(String[] args)
{
Student s= new Stuedent();//通过sutdent这个类 弄出了个对象;
}
}
第二种
class Student
{
String name;
Class(String name)
{
this.name=name;
}
}
classDemo
{
public static void main(String[] args)
{
Class c=new Class(zhangsan); .//这个是通过什么new出对象的啊????????????
}
}
|
|