①创建项目testpackage ②在pack2.B中添加方法f ③在类A中添加如下三个成员变量:int型的私有变量i float型的变量f double型的公有变量d 在pack1.B的main方法中为对象a的成员变量f和d分别赋值为2和3 在pack2.C的main方法中为对象a的成员变量d赋值为3

package pack1;

public class A {
    private int i;
    float f;
    public double d;
    public float getF()
    {
        return f;
    }
    public void setF(float f)
    {
        this.f = f;
    }
    public double getD() 
    {
        return d;
    }
    public void setD(double d) 
    {
        this.d = d;
    }
package pack1;

public class B {
    public static void main(String[] args) {    
    A a=new A();
    a.setF(2);
    a.setD(3);
    System.out.println("f="+a.getF()+"  d="+a.getD());
    
   }
}

package pack2;

public class B {
    public void f()
    {
        System.out.println("执行pack2包中的类B的方法f");
    }
    
}
package pack2;
import pack1.A;
public class C {
    public static void main(String[] args) {        
    
    A a=new A();
    B b=new B();
    b.f();
    a.setD(3);
    System.out.println("d="+a.getD());
 }
}

posted @ 2016-05-18 16:02  凌零聆  阅读(1075)  评论(0编辑  收藏  举报