大类型如何转换成小类型?如:class A{ int a; public void f(){}}class B extends A{ String s; public void g(){}}现创建一个对象:A aa = new A();然后在程序中我想把aa转换成B类型,用什么方法转换??