A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 任振铭   /  2015-10-1 21:16  /  1306 人查看  /  22 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

charryxiaocai 发表于 2015-10-3 23:21
这个是可以的,但是不能使用在静态方法中,否则要定义成静态对象!

对象也有静态的?
回复 使用道具 举报
921 中级黑马 2015-10-4 22:02:31
22#
任振铭 发表于 2015-10-3 22:46
这样创建的对象有什么意义?

class Engine{
    public void start(){}
    public void rev(){}
    public void stop(){}
    public void service(){System.out.println("asddddddf");}
}
class Wheel{
    public void inflate(int psf){}
}
class Window{
    public void rollup(){}
    public void rolldown(){}
}
class Door{
    public Window window=new Window();
    public void open(){}
    public void close(){}
}
public class Car{
    public Engine engine=new Engine();
    public Wheel[] wheel=new Wheel[4];
    public Door left=new Door(),right=new Door();
    public Car(){                          
        for(int i=0;i<4;i++)
            wheel=new Wheel();
    }
    public static void main(String[] args) {
        Car car=new Car();
        car.left.window.rollup();
        car.wheel[0].inflate(72);
        car.engine.service();
    }
}
回复 使用道具 举报
12
您需要登录后才可以回帖 登录 | 加入黑马