今天学面向对象,刘意一直用林青霞来分析面向对象程序设计,他们到底是什么关系,我都是半懂,前大神用面向对象的思想帮我分析一下,最好写个代码。
比如:class A{
public static void main(String[] args){
}
}
class B{
String str;
.................
B(String str,.........){
this.str=str;
........................
}
public void getB1(){
}
.....................................
}
|
|