是这样的,现在想在Demo类中使用一个对象,有两种方式:
class Demo{
public static viod main(String[] args){
Student stu = new Student();
}
} //这个是方式一
class Demo{
private Student stu ;
public Demo(Student stu){
this.stu = stu;
}
public static void main(String[] args){
stu.name = ......
stu.show(),
}
} //这是方式2
这两种方式有什么区别吗,实现的效果又有什么不同,在线程那块儿用方式2 的多, |
|