使用对象的步骤:
1.创建对象:
类名 对象名 = new 类名( );
Telphone phone = new Telphone( );
2.使用对象
引用对象的属性: 对象名.属性
引用对象的方法: 对象名.方法( );